diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eaf17fd..0bd02a56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.1] - 2026-01-15 +### Chore +- Remove redundant log to reduce noise + + ## [2.1.0] - 2026-01-15 ### Dependency - Upgraded internal dependency `redis` to version `redis >=7.1.0, <8.0.0` @@ -468,7 +473,16 @@ env variables, that should be used to configure logging. - Event classes: `StreamEvent`, `ScheduledEvent` and `TaskEvent`. -[Unreleased] https://github.com/corva-ai/python-sdk/compare/v1.14.2...master +[Unreleased] https://github.com/corva-ai/python-sdk/compare/v2.1.1...master + +[2.1.1] https://github.com/corva-ai/python-sdk/compare/v2.1.0...v2.1.1 +[2.1.0] https://github.com/corva-ai/python-sdk/compare/v1.15.1...v1.16.1 +[2.1.0] https://github.com/corva-ai/python-sdk/compare/v2.0.3...v2.1.0 +[2.0.3] https://github.com/corva-ai/python-sdk/compare/v2.0.2...v2.0.3 +[2.0.2] https://github.com/corva-ai/python-sdk/compare/v2.0.1...v2.0.2 +[2.0.1] https://github.com/corva-ai/python-sdk/compare/v2.0.0...v2.0.1 +[1.15.1] https://github.com/corva-ai/python-sdk/compare/v1.15.0...v1.15.1 +[2.0.0] https://github.com/corva-ai/python-sdk/compare/v1.15.0...v2.0.0 [1.14.2] https://github.com/corva-ai/python-sdk/compare/v1.14.1...v1.14.2 [1.14.1] https://github.com/corva-ai/python-sdk/compare/v1.14.0...v1.14.1 [1.14.0] https://github.com/corva-ai/python-sdk/compare/v1.13.1...v1.14.0 diff --git a/docs/antora-playbook.yml b/docs/antora-playbook.yml index f4c95352..2c011cee 100644 --- a/docs/antora-playbook.yml +++ b/docs/antora-playbook.yml @@ -7,7 +7,7 @@ content: start_path: docs branches: [] # branches: HEAD # Use this for local development - tags: [v2.1.0] + tags: [v2.1.1] asciidoc: attributes: page-toclevels: 5 diff --git a/docs/antora.yml b/docs/antora.yml index 29f1b0f3..dc07bb8c 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,3 +1,3 @@ name: corva-sdk -version: 2.1.0 +version: 2.1.1 nav: [modules/ROOT/nav.adoc] diff --git a/pyproject.toml b/pyproject.toml index 81d4fca0..4df3232d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "corva-sdk" description = "SDK for building Corva DevCenter Python apps." readme = "README.md" -version = "2.1.0" +version = "2.1.1" license = { text = "The Unlicense" } authors = [ { name = "Jordan Ambra", email = "jordan.ambra@corva.ai" } diff --git a/src/corva/cache_adapter.py b/src/corva/cache_adapter.py index 27364b22..7c4d89f1 100644 --- a/src/corva/cache_adapter.py +++ b/src/corva/cache_adapter.py @@ -93,14 +93,12 @@ def run(self) -> bool: # Legacy structure must exist; otherwise nothing to do if not self.client.exists(self.zset_name): - Logger.info("Legacy cache does not exist, skip migration") return False new_hash_name = self.NEW_HASH_PREFIX + self.hash_name # If new hash already exists, consider migration already done if self.client.exists(new_hash_name): - Logger.info("New cache key already exists, skip migration") return False # Current server time in ms diff --git a/src/version.py b/src/version.py index 127c148a..5b0431ec 100644 --- a/src/version.py +++ b/src/version.py @@ -1 +1 @@ -VERSION = "2.1.0" +VERSION = "2.1.1"