diff --git a/CHANGELOG.md b/CHANGELOG.md index b71a89d..c275d81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## `granc` - [0.6.0](https://github.com/JasterV/granc/compare/granc-v0.5.1...granc-v0.6.0) - 2026-01-27 + +- Make the `--file-descriptor-set` a global option for all commands, so reflection commands can also be executed against a local descriptor. ([#28](https://github.com/JasterV/granc/pull/28)) + ## `granc_core` - [0.5.0](https://github.com/JasterV/granc/compare/granc_core-v0.4.1...granc_core-v0.5.0) - 2026-01-27 - **Typestate design refactor**: The GrancClient has been refactored to support multiple states where invariants for each state are ensured by the compiler. ([#28](https://github.com/JasterV/granc/pull/28)) diff --git a/granc/Cargo.toml b/granc/Cargo.toml index 3b871b1..6e75c8d 100644 --- a/granc/Cargo.toml +++ b/granc/Cargo.toml @@ -11,11 +11,11 @@ publish = true readme = "../README.md" repository = { workspace = true } rust-version = { workspace = true } -version = "0.5.1" +version = "0.6.0" [dependencies] clap = { version = "4.5.54", features = ["derive"] } colored = "3.1.1" -granc_core = { path = "../granc-core" } +granc_core = "0.5.0" serde_json = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }