diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4a64c69..090a5f2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.2" + ".": "2.1.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index cf4ed02..b279610 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.1.3](https://github.com/growthbook/growthbook-python/compare/v2.1.2...v2.1.3) (2026-02-05) + + +### Features + +* Supporting Dict Subclasses in Evaluation - Merge pull request [#99](https://github.com/growthbook/growthbook-python/issues/99) from growthbook/feat/isInstanceTypeCheck ([8ed4d4e](https://github.com/growthbook/growthbook-python/commit/8ed4d4e1aaf5b79408d60b16f856d66146600f91)) +* Replaced all type(x) is T checks with isinstance(x, T). +* Updated getType, getPath, compare, and operator functions to use these new checks. + ## [2.1.2](https://github.com/growthbook/growthbook-python/compare/v2.1.1...v2.1.2) (2026-01-29) diff --git a/growthbook/__init__.py b/growthbook/__init__.py index eeca012..6474b25 100644 --- a/growthbook/__init__.py +++ b/growthbook/__init__.py @@ -18,5 +18,5 @@ ) # x-release-please-start-version -__version__ = "2.1.2" +__version__ = "2.1.3" # x-release-please-end diff --git a/setup.cfg b/setup.cfg index c345e1a..2a42032 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.2 +current_version = 2.1.3 commit = True tag = True