From 328371c0ab416aadca6f49cd5bb804f46c3eef85 Mon Sep 17 00:00:00 2001
From: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
Date: Sun, 21 Sep 2025 05:03:05 -0400
Subject: [PATCH] chore(main): release 0.8.3
Signed-off-by: OpenFeature Bot <109696520+openfeaturebot@users.noreply.github.com>
---
.release-please-manifest.json | 2 +-
CHANGELOG.md | 23 +++++++++++++++++++++++
README.md | 8 ++++----
openfeature/version.py | 2 +-
pyproject.toml | 2 +-
5 files changed, 30 insertions(+), 7 deletions(-)
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 2cf487e0..9f9e0c38 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1 +1 @@
-{".":"0.8.2"}
\ No newline at end of file
+{".":"0.8.3"}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9d50395d..3676640d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,28 @@
# Changelog
+## [0.8.3](https://github.com/open-feature/python-sdk/compare/v0.8.2...v0.8.3) (2025-09-21)
+
+
+### ๐ Bug Fixes
+
+* fix type hints of EvaluationContext and HookHints ([#535](https://github.com/open-feature/python-sdk/issues/535)) ([de37144](https://github.com/open-feature/python-sdk/commit/de371444b33b66ad0e6eb5c09224554c14aa5731))
+* invalid type alias for EvaluationContextAttributes ([#534](https://github.com/open-feature/python-sdk/issues/534)) ([0e0f018](https://github.com/open-feature/python-sdk/commit/0e0f018272bdf987b1e50a9190cd3b4585d3f9b1)), closes [#532](https://github.com/open-feature/python-sdk/issues/532)
+
+
+### โจ New Features
+
+* add hook data ([#533](https://github.com/open-feature/python-sdk/issues/533)) ([92f5da4](https://github.com/open-feature/python-sdk/commit/92f5da492ebc75d28a353316d0f151f62bcd59b7))
+
+
+### ๐งน Chore
+
+* add missing stateless provider tests ([#531](https://github.com/open-feature/python-sdk/issues/531)) ([74409bf](https://github.com/open-feature/python-sdk/commit/74409bf06ced4a218ebc01fd83ea20e480b34a09))
+* **deps:** update pre-commit hook pre-commit/mirrors-mypy to v1.17.1 ([#528](https://github.com/open-feature/python-sdk/issues/528)) ([9d0cbe8](https://github.com/open-feature/python-sdk/commit/9d0cbe8d4af95218f41d4e2dcb8e419b9639c825))
+* remove shell flag usage in project scripts ([#538](https://github.com/open-feature/python-sdk/issues/538)) ([81a1d95](https://github.com/open-feature/python-sdk/commit/81a1d95e682f20d23ec03418fb8f5464cc747fdf))
+* replace deprecated typing aliases ([#537](https://github.com/open-feature/python-sdk/issues/537)) ([837fef9](https://github.com/open-feature/python-sdk/commit/837fef943e9585640975258ccf0d095faacf740b))
+* support Python 3.14 ([#530](https://github.com/open-feature/python-sdk/issues/530)) ([32fdec1](https://github.com/open-feature/python-sdk/commit/32fdec178122d0838e8e776ba30f2dd722b21233))
+* update mypy and ruff ([#536](https://github.com/open-feature/python-sdk/issues/536)) ([b418cb0](https://github.com/open-feature/python-sdk/commit/b418cb0e331fb1ce453eb29191cc899bd347a6dd))
+
## [0.8.2](https://github.com/open-feature/python-sdk/compare/v0.8.1...v0.8.2) (2025-07-30)
diff --git a/README.md b/README.md
index 2bdc958d..5af694a7 100644
--- a/README.md
+++ b/README.md
@@ -19,8 +19,8 @@
-
-
+
+
@@ -60,13 +60,13 @@
#### Pip install
```bash
-pip install openfeature-sdk==0.8.2
+pip install openfeature-sdk==0.8.3
```
#### requirements.txt
```bash
-openfeature-sdk==0.8.2
+openfeature-sdk==0.8.3
```
```python
diff --git a/openfeature/version.py b/openfeature/version.py
index deded324..732155f8 100644
--- a/openfeature/version.py
+++ b/openfeature/version.py
@@ -1 +1 @@
-__version__ = "0.8.2"
+__version__ = "0.8.3"
diff --git a/pyproject.toml b/pyproject.toml
index e59ed1a7..e1480acc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,7 +5,7 @@ build-backend = "uv_build"
[project]
name = "openfeature_sdk"
-version = "0.8.2"
+version = "0.8.3"
description = "Standardizing Feature Flagging for Everyone"
readme = "README.md"
authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }]