diff --git a/CHANGELOG.md b/CHANGELOG.md index bb6e2cc5..31e59a20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Optimizely Android X SDK Changelog +## 5.1.0 +December 19th, 2025 + +### New Features + +This release introduces new primary features: [Contextual Multi-Armed Bandit (CMAB)](https://docs.developers.optimizely.com/feature-experimentation/docs/run-contextual-multi-armed-bandits) and [Holdouts](https://docs.developers.optimizely.com/feature-experimentation/docs/global-holdouts). + +**Contextual Multi-Armed Bandit (CMAB)** +- Add support for CMAB experiments with new configuration options and cache control (#514). +- Add new `decideAsync` methods to support asynchronous CMAB decision (#514). +- For configuration details, see the [CMAB configuration documentation](https://docs.developers.optimizely.com/feature-experimentation/docs/configure-the-cmab-cache-for-the-android-sdk). + +**Holdouts** +- Add Holdouts Feature Experimentation feature (#516). + +### Other Changes + +- Upgrade targetSDK to 35 + ## 5.0.1 May 30th, 2025 diff --git a/README.md b/README.md index b5b7daf2..435f7e0e 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ repositories { } dependencies { - implementation 'com.optimizely.ab:android-sdk:5.0.1' + implementation 'com.optimizely.ab:android-sdk:5.1.0' } ```