diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2be9c43..af55ef0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.0" + ".": "0.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fc6c80..ebc0f89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.2.1](https://github.com/launchdarkly/openfeature-python-server/compare/0.2.0...0.2.1) (2024-07-15) + + +### Bug Fixes + +* Ignore embedded kind when processing multi-kind contexts ([#15](https://github.com/launchdarkly/openfeature-python-server/issues/15)) ([dd17a4c](https://github.com/launchdarkly/openfeature-python-server/commit/dd17a4c2cc69804eff1faa2c45b84b0048a816e8)) +* Log warning if targeting key is not a string ([#16](https://github.com/launchdarkly/openfeature-python-server/issues/16)) ([7a8c835](https://github.com/launchdarkly/openfeature-python-server/commit/7a8c835f39caf25791989d521d1f44d18d9c5586)) + + +### Documentation + +* Fix usage to reflect latest refactor ([#14](https://github.com/launchdarkly/openfeature-python-server/issues/14)) ([ba4e662](https://github.com/launchdarkly/openfeature-python-server/commit/ba4e6621bbf03977e7a8dc8bbe36171609a21f61)) + ## [0.2.0](https://github.com/launchdarkly/openfeature-python-server/compare/0.1.2...0.2.0) (2024-06-11) diff --git a/docs/conf.py b/docs/conf.py index 976bbb7..656c8a6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = u'LaunchDarkly' # The short X.Y version. -version = '0.2.0' # x-release-please-version +version = '0.2.1' # x-release-please-version # The full version, including alpha/beta/rc tags. -release = '0.2.0' # x-release-please-version +release = '0.2.1' # x-release-please-version # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 66eb12b..14025c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-openfeature-server" -version = "0.2.0" +version = "0.2.1" description = "An OpenFeature provider for the LaunchDarkly Python server SDK" authors = ["LaunchDarkly "] license = "Apache-2.0"