diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 090a5f2..b6dacb8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.1.3" + ".": "2.1.4" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index b279610..88eb39b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.1.4](https://github.com/growthbook/growthbook-python/compare/v2.1.3...v2.1.4) (2026-02-23) + + +### Bug Fixes + +* Fixes for process hanging and shutdown errors - Merge pull request [#103](https://github.com/growthbook/growthbook-python/issues/103) from growthbook/pr102 ([c89a385](https://github.com/growthbook/growthbook-python/commit/c89a385b0cd0b0c4a776b7b81fc1ab3d27e40738)) +* parsing data for SSE in GrowthbookClient ([d390223](https://github.com/growthbook/growthbook-python/commit/d390223c0035d65d91a930391d4731321f4c2f15)) +* prevent SSE thread from blocking process exit and suppressing shutdown errors ([bddfb82](https://github.com/growthbook/growthbook-python/commit/bddfb82fce6284d4edf48b6135b51b362f82eab9)) + ## [2.1.3](https://github.com/growthbook/growthbook-python/compare/v2.1.2...v2.1.3) (2026-02-05) diff --git a/growthbook/__init__.py b/growthbook/__init__.py index 6474b25..89f82f6 100644 --- a/growthbook/__init__.py +++ b/growthbook/__init__.py @@ -18,5 +18,5 @@ ) # x-release-please-start-version -__version__ = "2.1.3" +__version__ = "2.1.4" # x-release-please-end diff --git a/setup.cfg b/setup.cfg index 2a42032..dcc5150 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.3 +current_version = 2.1.4 commit = True tag = True