From b2804d4c9edc7631e8208efb085dd8b4bbc882b7 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sat, 23 Nov 2024 14:08:05 +0100 Subject: [PATCH] Release 1.0.1 --- CHANGES.rst | 5 +++++ src/crate/client/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index a77fcc1a..2cf9c9dd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,6 +4,11 @@ Changes for crate Unreleased ========== + + +2024/11/23 1.0.1 +================ + - Python: Fixed "implicit namespace packages" migration by omitting ``__init__.py`` from ``crate`` namespace package, see `PEP 420`_ and `Package Discovery and Namespace Package ยป Finding namespace packages`_. diff --git a/src/crate/client/__init__.py b/src/crate/client/__init__.py index 61a61a88..2fec7abd 100644 --- a/src/crate/client/__init__.py +++ b/src/crate/client/__init__.py @@ -29,7 +29,7 @@ # version string read from setup.py using a regex. Take care not to break the # regex! -__version__ = "1.0.0" +__version__ = "1.0.1" # codeql[py/unused-global-variable] apilevel = "2.0"