From 03aefa6a2488f6b0eecc93c0643dcea4efddf379 Mon Sep 17 00:00:00 2001
From: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Date: Thu, 15 Jan 2026 09:05:37 -0500
Subject: [PATCH] chore(main): release 0.9.0
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
---
.release-please-manifest.json | 2 +-
CHANGELOG.md | 27 +++++++++++++++++++++++++++
README.md | 8 ++++----
openfeature/version.py | 2 +-
pyproject.toml | 2 +-
5 files changed, 34 insertions(+), 7 deletions(-)
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 489125ea..24ce62fb 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1 +1 @@
-{".":"0.8.4"}
\ No newline at end of file
+{".":"0.9.0"}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 26427742..61dfe43d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,32 @@
# Changelog
+## [0.9.0](https://github.com/open-feature/python-sdk/compare/v0.8.4...v0.9.0) (2026-01-15)
+
+
+### โ BREAKING CHANGES
+
+* remove deprecated openfeature.provider.provider module ([#558](https://github.com/open-feature/python-sdk/issues/558))
+* Drop python 3.9 support ([#554](https://github.com/open-feature/python-sdk/issues/554))
+
+### ๐ Bug Fixes
+
+* validate domain is present when calling `set_provider` on registry ([#561](https://github.com/open-feature/python-sdk/issues/561)) ([9fc6121](https://github.com/open-feature/python-sdk/commit/9fc612180a3ea8d26820394b329abd24804d2df4))
+
+
+### โจ New Features
+
+* Drop python 3.9 support ([04106f5](https://github.com/open-feature/python-sdk/commit/04106f532d3a92d9dd70fd2160a07672ca4404f8))
+
+
+### ๐งน Chore
+
+* Drop python 3.9 support ([#554](https://github.com/open-feature/python-sdk/issues/554)) ([04106f5](https://github.com/open-feature/python-sdk/commit/04106f532d3a92d9dd70fd2160a07672ca4404f8))
+
+
+### ๐ Refactoring
+
+* remove deprecated openfeature.provider.provider module ([#558](https://github.com/open-feature/python-sdk/issues/558)) ([7c27c7a](https://github.com/open-feature/python-sdk/commit/7c27c7ae58ab498fdc85ab508a76f7d5261f02f1))
+
## [0.8.4](https://github.com/open-feature/python-sdk/compare/v0.8.3...v0.8.4) (2025-12-08)
diff --git a/README.md b/README.md
index ccec0686..b612d61b 100644
--- a/README.md
+++ b/README.md
@@ -19,8 +19,8 @@
-
-
+
+
@@ -60,13 +60,13 @@
#### Pip install
```bash
-pip install openfeature-sdk==0.8.4
+pip install openfeature-sdk==0.9.0
```
#### requirements.txt
```bash
-openfeature-sdk==0.8.4
+openfeature-sdk==0.9.0
```
```python
diff --git a/openfeature/version.py b/openfeature/version.py
index fa3ddd8c..3e2f46a3 100644
--- a/openfeature/version.py
+++ b/openfeature/version.py
@@ -1 +1 @@
-__version__ = "0.8.4"
+__version__ = "0.9.0"
diff --git a/pyproject.toml b/pyproject.toml
index bd2e00dc..64d6252f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,7 +5,7 @@ build-backend = "uv_build"
[project]
name = "openfeature_sdk"
-version = "0.8.4"
+version = "0.9.0"
description = "Standardizing Feature Flagging for Everyone"
readme = "README.md"
authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }]