From 8e7e945dbe5305a6845dd5d3b1aa6e1eb16b9fb2 Mon Sep 17 00:00:00 2001 From: Jae Kim Date: Mon, 4 May 2026 17:24:16 -0700 Subject: [PATCH 1/2] [FSSDK-12546] release python v5.6.0 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 715ee391..4fd7cfbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Optimizely Python SDK Changelog +## 5.6.0 +May 4, 2026 + +### New Features + +**Feature Rollout**: Added support for Feature Rollouts, a new experiment type +combining Targeted Delivery simplicity with A/B test measurement capabilities. +Feature Rollouts enable progressive rollouts with full impact analytics, metric tracking, +and confidence intervals. +See [Feature Rollout docs](https://support.optimizely.com/hc/en-us/articles/45552846481037-Run-Feature-Rollouts-in-Feature-Experimentation) for more information. + +--- + ## 5.5.0 April 30th, 2026 From 0d5509758ce58f677da29a8bb4859a4dc6f369ed Mon Sep 17 00:00:00 2001 From: Jae Kim Date: Mon, 4 May 2026 17:24:24 -0700 Subject: [PATCH 2/2] [FSSDK-12546] bump version to 5.6.0 --- optimizely/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optimizely/version.py b/optimizely/version.py index 85bb307e..d9d9718e 100644 --- a/optimizely/version.py +++ b/optimizely/version.py @@ -11,5 +11,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -version_info = (5, 5, 0) +version_info = (5, 6, 0) __version__ = '.'.join(str(v) for v in version_info)