diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9d957c7..f1cf1e5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{ ".": "0.1.0" } +{".":"0.1.1"} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..8d32e4f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,31 @@ +# Changelog + +## [0.1.1](https://github.com/open-feature/rust-sdk/compare/open-feature-v0.1.0...open-feature-v0.1.1) (2023-09-27) + + +### ๐Ÿ› Bug Fixes + +* **deps:** update rust crate time to 0.3.29 ([#26](https://github.com/open-feature/rust-sdk/issues/26)) ([affff7e](https://github.com/open-feature/rust-sdk/commit/affff7eb912a475cd4314a609f388bb62d4cd84c)) +* **deps:** update rust crate typed-builder to 0.16.1 ([#22](https://github.com/open-feature/rust-sdk/issues/22)) ([953f68b](https://github.com/open-feature/rust-sdk/commit/953f68b5b462f8662837822f160d10a998e3f607)) +* **deps:** update rust crate typed-builder to 0.16.2 ([#25](https://github.com/open-feature/rust-sdk/issues/25)) ([4808212](https://github.com/open-feature/rust-sdk/commit/4808212f59471c51be1558dfd43e5c44d6bda811)) + + +### โœจ New Features + +* add shutdown() function to provider trait ([9f779b3](https://github.com/open-feature/rust-sdk/commit/9f779b32aac79970052b8a65d0d9bbf7beb1605a)) +* enhance singleton and tests ([3a655bf](https://github.com/open-feature/rust-sdk/commit/3a655bfd46facaa7d975268ac36a37396f02b298)) +* implement evaluation details and re-design evaluation API ([#24](https://github.com/open-feature/rust-sdk/issues/24)) ([d6aace1](https://github.com/open-feature/rust-sdk/commit/d6aace1a47ed41974a2916fd7576c59fbeeba9d2)) +* implement support for array type ([#19](https://github.com/open-feature/rust-sdk/issues/19)) ([525223d](https://github.com/open-feature/rust-sdk/commit/525223d6fb88e10bdb0a05e8f6acedbdb8fa4f7e)) + + +### ๐Ÿงน Chore + +* Add tooling to detect missing specification tests ([#23](https://github.com/open-feature/rust-sdk/issues/23)) ([daf2ae2](https://github.com/open-feature/rust-sdk/commit/daf2ae2d4d742814418c39976bffb71e5a865a1a)) +* adding WIP label to readme. ([734e813](https://github.com/open-feature/rust-sdk/commit/734e8131457ee3a04a358c7b16ee6dbee6074c8a)) +* **deps:** update actions/checkout action to v4 ([#14](https://github.com/open-feature/rust-sdk/issues/14)) ([98d12c0](https://github.com/open-feature/rust-sdk/commit/98d12c043d47e1210d707b5fa1cafd6b50cd8aec)) +* prepare for automatic release ([#27](https://github.com/open-feature/rust-sdk/issues/27)) ([4aa0dd5](https://github.com/open-feature/rust-sdk/commit/4aa0dd55d6e33b7881a560595377d659767d891e)) + + +### ๐Ÿ”„ Refactoring + +* change EvaluationContext to take a reference ([9cc5af2](https://github.com/open-feature/rust-sdk/commit/9cc5af29a20b96c7ce0f16779039d2e6fa677c65)) diff --git a/Cargo.toml b/Cargo.toml index 74388fb..bc3305c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "open-feature" -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.67.1" description = "The official OpenFeature Rust SDK." diff --git a/README.md b/README.md index bad937d..96c935c 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ @@ -49,7 +49,7 @@ Add the following content to the `Cargo.toml` file: ```toml -open-feature = "0.1.0" +open-feature = "0.1.1" ```