From 871c4ebfd9d5e2b76c2c8420c68987eaea1edebe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 05:49:04 +0000 Subject: [PATCH] chore(main): release 3.0.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ README.md | 8 ++++---- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 62e41ad..015c662 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"3.0.2"} +{".":"3.0.3"} diff --git a/CHANGELOG.md b/CHANGELOG.md index bfc5155..e2771a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.3](https://github.com/spotify/confidence-sdk-python/compare/v3.0.2...v3.0.3) (2026-06-08) + + +### 🧹 Chore + +* mark SDK as maintenance mode ([#117](https://github.com/spotify/confidence-sdk-python/issues/117)) ([e98910d](https://github.com/spotify/confidence-sdk-python/commit/e98910dce4c79f9cf9edde967d408c3840ff2a95)) + ## [3.0.2](https://github.com/spotify/confidence-sdk-python/compare/v3.0.1...v3.0.2) (2026-05-26) diff --git a/README.md b/README.md index 4916c40..7d6e51b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ the [OpenFeature reference documentation](https://openfeature.dev/docs/reference ### pip install ```python -pip install spotify-confidence-sdk==3.0.2 +pip install spotify-confidence-sdk==3.0.3 ``` This installs the full SDK including telemetry support and is the suggested . @@ -25,14 +25,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.2 --no-deps -pip install requests==3.0.2 openfeature-sdk==0.4.2 typing_extensions==4.9.0 httpx==0.27.2 +pip install spotify-confidence-sdk==3.0.3 --no-deps +pip install requests==3.0.3 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.2 +spotify-confidence-sdk==3.0.3 pip install -r requirements.txt ```