diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1a184fd..f5b8664 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.2.2" -} \ No newline at end of file + ".": "2.3.0" +} diff --git a/CHANGELOG.md b/CHANGELOG.md index b721e6f..8b730e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [2.3.0](https://github.com/growthbook/growthbook-python/compare/v2.2.2...v2.3.0) (2026-06-05) + +### Features + +* Added opt-in remote evaluation support for sync and async clients including cache invalidation, concurrent request coalescing, and cancellation handling. Merge pull request [#118](https://github.com/growthbook/growthbook-python/issues/118) from growthbook/feat/remote-eval ([f6b7c0a](https://github.com/growthbook/growthbook-python/commit/f6b7c0a224a021bd66eda9d6a939aad2064add35)) +* Merge pull request [#119](https://github.com/growthbook/growthbook-python/issues/119) from vazarkevych/fix/sticky-bucket-hash-value-resolution ([2edd6a3](https://github.com/growthbook/growthbook-python/commit/2edd6a343dd15de9f96eb36c7c4407e213941336)) + + +### Bug Fixes +* Fixed user context synchronization in evaluation/logging paths. ([75f1dcb](https://github.com/growthbook/growthbook-python/pull/118/changes/75f1dcb71e8cddbe0d88a51e2475a439e33318b5)) +* Fixed `$ne`, `$notRegex`, and `$notRegexi` condition behavior for incompatible inputs. ([26d549b](https://github.com/growthbook/growthbook-python/pull/118/changes/26d549b8b0c4cee6171db955f3069a5d9a6b03d4)) +* correct sticky bucket hash attribute resolution ([2edd6a3](https://github.com/growthbook/growthbook-python/commit/2edd6a343dd15de9f96eb36c7c4407e213941336)) +* correct sticky bucket hash attribute resolution ([875316c](https://github.com/growthbook/growthbook-python/commit/875316c494e50d60a680767838c68b622f8fd402)) + + ## [2.2.2](https://github.com/growthbook/growthbook-python/compare/v2.2.1...v2.2.2) (2026-05-11) diff --git a/growthbook/__init__.py b/growthbook/__init__.py index c550c21..6549777 100644 --- a/growthbook/__init__.py +++ b/growthbook/__init__.py @@ -18,5 +18,5 @@ ) # x-release-please-start-version -__version__ = "2.2.2" +__version__ = "2.3.0" # x-release-please-end diff --git a/setup.cfg b/setup.cfg index 03ce44a..6d64d14 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.2.2 +current_version = 2.3.0 commit = True tag = True