Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"crates/env-var": "0.1.1",
"crates/flagd": "0.1.0",
"crates/flagsmith": "0.1.0",
"crates/flipt": "0.1.0",
"crates/flipt": "0.2.0",
"crates/ofrep": "0.0.4",
"crates/flagd-evaluation-engine": "0.0.1"
}
17 changes: 17 additions & 0 deletions crates/flipt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

## [0.2.0](https://github.com/open-feature/rust-sdk-contrib/compare/open-feature-flipt-v0.1.0...open-feature-flipt-v0.2.0) (2026-06-23)


Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This extra blank line can be removed to improve the compactness of the changelog.

### ⚠ BREAKING CHANGES

* Update dependencies and fix flaky retry mechanism tests ([#74](https://github.com/open-feature/rust-sdk-contrib/issues/74))

### ✨ New Features

* **flagd:** Cargo features for evaluation modes ([#88](https://github.com/open-feature/rust-sdk-contrib/issues/88)) ([6ba9d48](https://github.com/open-feature/rust-sdk-contrib/commit/6ba9d48422313cba941fd77b99d2dfae06e95324))


### 🧹 Chore

* Update dependencies and fix flaky retry mechanism tests ([#74](https://github.com/open-feature/rust-sdk-contrib/issues/74)) ([9b78024](https://github.com/open-feature/rust-sdk-contrib/commit/9b780249584eb1ddfe7ad7f1049c415ff8658234))
2 changes: 1 addition & 1 deletion crates/flipt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "open-feature-flipt"
version = "0.1.0"
version = "0.2.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Update installation docs to match the new crate version.

Line 3 bumps to 0.2.0, but crates/flipt/README.md still shows open-feature-flipt="0.1.0" in installation guidance, which can send users to the previous release.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@crates/flipt/Cargo.toml` at line 3, The crate version has been bumped to
0.2.0 in the Cargo.toml file, but the installation documentation in
crates/flipt/README.md still references the old version 0.1.0. Update the
dependency version in the README.md installation example from
open-feature-flipt="0.1.0" to open-feature-flipt="0.2.0" to ensure users
download the correct version when following the installation instructions.

edition = "2024"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
Loading