diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bcd0522..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.0" + ".": "0.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e4a500..e3e8215 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.7.0](https://github.com/launchdarkly/openfeature-python-server/compare/0.6.0...0.7.0) (2026-08-31) + + +### Features + +* Populate OpenFeature flag metadata from the evaluation reason ([#53](https://github.com/launchdarkly/openfeature-python-server/issues/53)) ([11ae1a6](https://github.com/launchdarkly/openfeature-python-server/commit/11ae1a6b3491bb2d8eeeecb7b005906b86e97d40)) +* Report provider name and version to LaunchDarkly ([#51](https://github.com/launchdarkly/openfeature-python-server/issues/51)) ([4290b8a](https://github.com/launchdarkly/openfeature-python-server/commit/4290b8a06c402e2ca9647ff7e39091e0132e5dc7)) +* Support OpenFeature tracking ([#50](https://github.com/launchdarkly/openfeature-python-server/issues/50)) ([9395775](https://github.com/launchdarkly/openfeature-python-server/commit/93957750478503c4a49d3277b00e3188a45097a0)) + + +### Bug Fixes + +* Do not report a failed initialization as a fatal error ([#56](https://github.com/launchdarkly/openfeature-python-server/issues/56)) ([946a515](https://github.com/launchdarkly/openfeature-python-server/commit/946a515573521ddc5144d5cefac58a982aac4327)) +* Do not report a permanent data source failure as fatal ([#52](https://github.com/launchdarkly/openfeature-python-server/issues/52)) ([15014c1](https://github.com/launchdarkly/openfeature-python-server/commit/15014c1094a8b06cb7c66cd9dfd3468fb2f636fc)) +* Map the WRONG_TYPE error kind to TYPE_MISMATCH ([#57](https://github.com/launchdarkly/openfeature-python-server/issues/57)) ([17478dc](https://github.com/launchdarkly/openfeature-python-server/commit/17478dcd5b3567a96d66948c2b9fd3f6f88e73e5)) + + +### Documentation + +* Add an OpenFeature feature matrix to the README ([#58](https://github.com/launchdarkly/openfeature-python-server/issues/58)) ([6c31554](https://github.com/launchdarkly/openfeature-python-server/commit/6c31554a9fb2471560170525dcdc5e8225a6edb2)) + ## [0.6.0](https://github.com/launchdarkly/openfeature-python-server/compare/0.5.1...0.6.0) (2026-03-24) diff --git a/docs/conf.py b/docs/conf.py index ef73c58..b893e39 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = u'LaunchDarkly' # The short X.Y version. -version = '0.6.0' # x-release-please-version +version = '0.7.0' # x-release-please-version # The full version, including alpha/beta/rc tags. -release = '0.6.0' # x-release-please-version +release = '0.7.0' # x-release-please-version # -- General configuration --------------------------------------------------- diff --git a/ld_openfeature/version.py b/ld_openfeature/version.py index 5e8875d..54408e0 100644 --- a/ld_openfeature/version.py +++ b/ld_openfeature/version.py @@ -1 +1 @@ -VERSION = "0.6.0" # x-release-please-version +VERSION = "0.7.0" # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index 6504b08..658e8ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-openfeature-server" -version = "0.6.0" +version = "0.7.0" description = "An OpenFeature provider for the LaunchDarkly Python server SDK" authors = ["LaunchDarkly "] license = "Apache-2.0"