diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1ffcd772..6630eb74 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "flipt-engine": "0.0.2", + "flipt-engine": "0.0.3", "flipt-client-go": "0.0.3", "flipt-client-node": "0.0.2", - "flipt-client-python": "0.0.2", + "flipt-client-python": "0.0.3", "flipt-client-ruby": "0.0.2" } diff --git a/flipt-client-python/CHANGELOG.md b/flipt-client-python/CHANGELOG.md index f9925854..6616357a 100644 --- a/flipt-client-python/CHANGELOG.md +++ b/flipt-client-python/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.0.3](https://github.com/flipt-io/flipt-client-sdks/compare/flipt-client-python-v0.0.2...flipt-client-python-v0.0.3) (2024-01-03) + + +### Features + +* allow none to be used for python context ([#64](https://github.com/flipt-io/flipt-client-sdks/issues/64)) ([b02c441](https://github.com/flipt-io/flipt-client-sdks/commit/b02c441e9c5ceb5b837eb06c2b2ce931c2b146a5)) + + +### Bug Fixes + +* instead of using empty dictionary use actual EngineOpts instance ([#62](https://github.com/flipt-io/flipt-client-sdks/issues/62)) ([9aae5e9](https://github.com/flipt-io/flipt-client-sdks/commit/9aae5e91216a0c101551340567a251e9aa6a240b)) + ## [0.0.2](https://github.com/flipt-io/flipt-client-sdks/compare/flipt-client-python-v0.0.1...flipt-client-python-v0.0.2) (2023-12-27) diff --git a/flipt-client-python/pyproject.toml b/flipt-client-python/pyproject.toml index 51fa44c7..aa54d408 100644 --- a/flipt-client-python/pyproject.toml +++ b/flipt-client-python/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] include = [{ path = "ext/**/*" }, { path = "README.md" }] name = "flipt-client" -version = "0.0.2" +version = "0.0.3" description = "Flipt Client Evaluation SDK" authors = ["Flipt Devs "] readme = "README.md" diff --git a/flipt-engine/CHANGELOG.md b/flipt-engine/CHANGELOG.md index 2570973e..793c4836 100644 --- a/flipt-engine/CHANGELOG.md +++ b/flipt-engine/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.0.3](https://github.com/flipt-io/flipt-client-sdks/compare/flipt-engine-v0.0.2...flipt-engine-v0.0.3) (2024-01-03) + + +### Bug Fixes + +* instead of using empty dictionary use actual EngineOpts instance ([#62](https://github.com/flipt-io/flipt-client-sdks/issues/62)) ([9aae5e9](https://github.com/flipt-io/flipt-client-sdks/commit/9aae5e91216a0c101551340567a251e9aa6a240b)) +* return error on http status >= 400 ([#65](https://github.com/flipt-io/flipt-client-sdks/issues/65)) ([100c7d2](https://github.com/flipt-io/flipt-client-sdks/commit/100c7d2f7417b3bee6fa5f5fb55fd4cd27a682c2)) + ## [0.0.2](https://github.com/flipt-io/flipt-client-sdks/compare/flipt-engine-v0.0.1...flipt-engine-v0.0.2) (2023-12-27) diff --git a/flipt-engine/Cargo.toml b/flipt-engine/Cargo.toml index 6a3e5259..18a084ac 100644 --- a/flipt-engine/Cargo.toml +++ b/flipt-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flipt-client-engine" -version = "0.0.2" +version = "0.0.3" edition = "2021" authors = ["Flipt Devs "] license = "MIT"