diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a915e8c..001eb2c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f81b19..ec130e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.1.2](https://github.com/launchdarkly/openfeature-python-server/compare/0.1.1...0.1.2) (2024-05-03) + + +### Bug Fixes + +* Use canonical import paths for openfeature classes ([#11](https://github.com/launchdarkly/openfeature-python-server/issues/11)) ([e60ec31](https://github.com/launchdarkly/openfeature-python-server/commit/e60ec315812952933cb253b6628ef5446f62edc6)) + + +### Documentation + +* Clarify beta version warning and dependencies ([#8](https://github.com/launchdarkly/openfeature-python-server/issues/8)) ([6576453](https://github.com/launchdarkly/openfeature-python-server/commit/65764536ace64875a007def5f1881e59a533539b)) +* Fix readthedocs generation ([#10](https://github.com/launchdarkly/openfeature-python-server/issues/10)) ([da5283d](https://github.com/launchdarkly/openfeature-python-server/commit/da5283d1e8e417a43d63acfd5ee1d045fd63651c)) + ## [0.1.1](https://github.com/launchdarkly/openfeature-python-server/compare/0.1.0...0.1.1) (2024-02-12) diff --git a/docs/conf.py b/docs/conf.py index 65160a0..51d3641 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = u'LaunchDarkly' # The short X.Y version. -version = '0.1.1' # x-release-please-version +version = '0.1.2' # x-release-please-version # The full version, including alpha/beta/rc tags. -release = '0.1.1' # x-release-please-version +release = '0.1.2' # x-release-please-version # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index dceef27..85709cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-openfeature-server" -version = "0.1.1" +version = "0.1.2" description = "An OpenFeature provider for the LaunchDarkly Python server SDK" authors = ["LaunchDarkly "] license = "Apache-2.0"