diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2537c1f..218393f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.4.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b033134..f22fc4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.1](https://github.com/launchdarkly/openfeature-python-server/compare/0.4.0...0.4.1) (2025-07-07) + + +### Bug Fixes + +* Gracefully cast for numeric flag evaluations ([#27](https://github.com/launchdarkly/openfeature-python-server/issues/27)) ([7429f28](https://github.com/launchdarkly/openfeature-python-server/commit/7429f28824fadfb994960dcd698e89761aebe44e)) + ## [0.4.0](https://github.com/launchdarkly/openfeature-python-server/compare/0.3.0...0.4.0) (2025-06-26) diff --git a/docs/conf.py b/docs/conf.py index fa6eb50..63477f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,9 +30,9 @@ author = u'LaunchDarkly' # The short X.Y version. -version = '0.4.0' # x-release-please-version +version = '0.4.1' # x-release-please-version # The full version, including alpha/beta/rc tags. -release = '0.4.0' # x-release-please-version +release = '0.4.1' # x-release-please-version # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2632a14..accf56a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "launchdarkly-openfeature-server" -version = "0.4.0" +version = "0.4.1" description = "An OpenFeature provider for the LaunchDarkly Python server SDK" authors = ["LaunchDarkly "] license = "Apache-2.0"