From 8b2b699904cd59977c51ef958b95ead4704594ce Mon Sep 17 00:00:00 2001 From: ADBond <48208438+ADBond@users.noreply.github.com> Date: Thu, 26 Sep 2024 11:51:38 +0100 Subject: [PATCH] version -> 0.3.0 --- CHANGELOG.md | 5 ++++- README.md | 2 +- pyproject.toml | 2 +- splinkclickhouse/__init__.py | 2 +- uv.lock | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e633f2..7975ce9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.3.0] - 2024-09-26 + ### Changed - `chdb` is now an optional dependency, requiring opt-in installation for use of `ChDBAPI` [#28](https://github.com/ADBond/splinkclickhouse/pull/28). @@ -70,7 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Basic working version of package with api for `chdb` -[unreleased]: https://github.com/ADBond/splinkclickhouse/compare/v0.2.5...HEAD +[unreleased]: https://github.com/ADBond/splinkclickhouse/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/ADBond/splinkclickhouse/compare/v0.2.5...v0.3.0 [0.2.5]: https://github.com/ADBond/splinkclickhouse/compare/v0.2.4...v0.2.5 [0.2.4]: https://github.com/ADBond/splinkclickhouse/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/ADBond/splinkclickhouse/compare/v0.2.2...v0.2.3 diff --git a/README.md b/README.md index 05fb219..79df598 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Alternatively you can install the package from github: ```sh # Replace with any version you want, or specify a branch after '@' -pip install git+https://github.com/ADBond/splinkclickhouse.git@v0.2.5 +pip install git+https://github.com/ADBond/splinkclickhouse.git@v0.3.0 ``` While the package is in early development there will may be breaking changes in new versions without warning, although these _should_ only occur in new minor versions. diff --git a/pyproject.toml b/pyproject.toml index c9b1563..7350371 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "splinkclickhouse" -version = "0.2.5" +version = "0.3.0" description = "Clickhouse backend support for Splink" authors = [{name = "Andrew Bond"}] license = {text = "MIT License"} diff --git a/splinkclickhouse/__init__.py b/splinkclickhouse/__init__.py index 841eb76..67add76 100644 --- a/splinkclickhouse/__init__.py +++ b/splinkclickhouse/__init__.py @@ -2,7 +2,7 @@ from .clickhouse.database_api import ClickhouseAPI -__version__ = "0.2.5" +__version__ = "0.3.0" # Use getarr to make the error appear at the point of use diff --git a/uv.lock b/uv.lock index d307eae..4618f32 100644 --- a/uv.lock +++ b/uv.lock @@ -809,7 +809,7 @@ wheels = [ [[package]] name = "splinkclickhouse" -version = "0.2.5" +version = "0.3.0" source = { editable = "." } dependencies = [ { name = "clickhouse-connect" },