From 340c60dd5c2506fcd6d33a87123a31573f263d03 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Sep 2023 07:00:35 +0000 Subject: [PATCH] chore(main): release 0.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- readme.md | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 59fed2ad..77ae2b08 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"0.1.0"} \ No newline at end of file +{".":"0.2.0"} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 77ef0bdb..d13ed897 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.2.0](https://github.com/open-feature/python-sdk/compare/v0.1.0...v0.2.0) (2023-09-09) + + +### ⚠ BREAKING CHANGES + +* simplify namespaces to make public API more pythonic ([#172](https://github.com/open-feature/python-sdk/issues/172)) +* move api hooks methods to api module ([#169](https://github.com/open-feature/python-sdk/issues/169)) +* move api evaluation context methods to api module ([#164](https://github.com/open-feature/python-sdk/issues/164)) + +### Code Refactoring + +* move api evaluation context methods to api module ([#164](https://github.com/open-feature/python-sdk/issues/164)) ([67ba861](https://github.com/open-feature/python-sdk/commit/67ba8619b913c4af25f1af9df2bab863cb7989d0)) +* move api hooks methods to api module ([#169](https://github.com/open-feature/python-sdk/issues/169)) ([a7da26f](https://github.com/open-feature/python-sdk/commit/a7da26fd93c5dae33318366f1fc3c8b11e11ddaa)) +* simplify namespaces to make public API more pythonic ([#172](https://github.com/open-feature/python-sdk/issues/172)) ([793ced1](https://github.com/open-feature/python-sdk/commit/793ced19177d6f18f7ecbfc0673a520fbbf2a2cd)) + ## [0.1.0](https://github.com/open-feature/python-sdk/compare/v0.0.9...v0.1.0) (2023-07-25) diff --git a/pyproject.toml b/pyproject.toml index ece6ecf3..691008e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "openfeature_sdk" -version = "0.1.0" +version = "0.2.0" description = "Standardizing Feature Flagging for Everyone" readme = "readme.md" authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }] diff --git a/readme.md b/readme.md index 6cfc244b..779f6c08 100644 --- a/readme.md +++ b/readme.md @@ -37,13 +37,13 @@ This library is intended to be used in server-side contexts and has not been eva Pip install ```bash -pip install openfeature-sdk==0.1.0 +pip install openfeature-sdk==0.2.0 ``` requirements.txt ```bash -openfeature-sdk==0.1.0 +openfeature-sdk==0.2.0 ``` ```python