diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bf3f6b1..f36f388 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"3.0.0"} +{".":"3.0.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md index ec6a7d1..ed33c06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.1](https://github.com/spotify/confidence-sdk-python/compare/v3.0.0...v3.0.1) (2026-05-22) + + +### 🐛 Bug Fixes + +* **deps:** relax httpx version pin to >=0.27.2,<1.0.0 ([#112](https://github.com/spotify/confidence-sdk-python/issues/112)) ([b614d51](https://github.com/spotify/confidence-sdk-python/commit/b614d5151bdcb3f71a52f498da16d277d67581bc)) + ## [3.0.0](https://github.com/spotify/confidence-sdk-python/compare/v2.1.0...v3.0.0) (2026-04-09) diff --git a/README.md b/README.md index b681f5f..6ad0f87 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ the [OpenFeature reference documentation](https://openfeature.dev/docs/reference ### pip install ```python -pip install spotify-confidence-sdk==3.0.0 +pip install spotify-confidence-sdk==3.0.1 ``` This installs the full SDK including telemetry support and is the suggested . @@ -20,14 +20,14 @@ This installs the full SDK including telemetry support and is the suggested . For environments where you cannot use protobuf, you can install without protobuf (which disables telemetry): ```bash -pip install spotify-confidence-sdk==3.0.0 --no-deps -pip install requests==3.0.0 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2 +pip install spotify-confidence-sdk==3.0.1 --no-deps +pip install requests==3.0.1 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2 ``` #### requirements.txt ```txt # Full installation (recommended) -spotify-confidence-sdk==3.0.0 +spotify-confidence-sdk==3.0.1 pip install -r requirements.txt ```