diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b1f6a8..7d9b009 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.4" + ".": "0.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f51f364..ee3721e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.10.0](https://github.com/kainlite/gitops-operator/compare/v0.9.4...v0.10.0) (2026-06-17) + + +### ⚠ BREAKING CHANGES + +* the /reconcile response shape changed and the public State enum was replaced by ReconcileResult/Action/Status. + +### Features + +* structured reconcile API, status/health endpoints, and correctness fixes ([39060a9](https://github.com/kainlite/gitops-operator/commit/39060a90becae741dae64d474358062c9638591c)) + ## [0.9.4](https://github.com/kainlite/gitops-operator/compare/v0.9.3...v0.9.4) (2026-05-03) diff --git a/Cargo.lock b/Cargo.lock index 50b5886..9efacda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -707,7 +707,7 @@ dependencies = [ [[package]] name = "gitops-operator" -version = "0.9.4" +version = "0.10.0" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index bd5c81e..7e53b71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitops-operator" -version = "0.9.4" +version = "0.10.0" authors = ["Gabriel Garrido "] edition = "2024" license = "Apache-2.0"