chore: release (#37)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-01-28 14:36:12 +01:00 committed by GitHub
parent 80ce6d7668
commit 687654c46f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 13 additions and 3 deletions

View file

@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## `granc` - [0.7.0](https://github.com/JasterV/granc/compare/granc-v0.6.0...granc-v0.7.0) - 2026-01-28
- *(deps)* bump clap from 4.5.54 to 4.5.55 ([#36](https://github.com/JasterV/granc/pull/36))
- [fix] A URL should not be required for list and describe commands ([#35](https://github.com/JasterV/granc/pull/35))
- [test] Added comprehensive tests for CLI argument parsing and validation.
## `granc_core` - [0.6.0](https://github.com/JasterV/granc/compare/granc_core-v0.5.0...granc_core-v0.6.0) - 2026-01-28
- [refactor] Now the `GrancClient` also provides a full offline state and other states have been renamed to be more idiomatic ([#35](https://github.com/JasterV/granc/pull/35))
## `granc` - [0.6.0](https://github.com/JasterV/granc/compare/granc-v0.5.1...granc-v0.6.0) - 2026-01-27 ## `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)) - 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))

4
Cargo.lock generated
View file

@ -336,7 +336,7 @@ dependencies = [
[[package]] [[package]]
name = "granc" name = "granc"
version = "0.6.0" version = "0.6.1"
dependencies = [ dependencies = [
"clap", "clap",
"colored", "colored",
@ -347,7 +347,7 @@ dependencies = [
[[package]] [[package]]
name = "granc_core" name = "granc_core"
version = "0.5.0" version = "0.6.0"
dependencies = [ dependencies = [
"echo-service", "echo-service",
"futures-util", "futures-util",

View file

@ -11,7 +11,7 @@ publish = true
readme = "README.md" readme = "README.md"
repository = { workspace = true } repository = { workspace = true }
rust-version = { workspace = true } rust-version = { workspace = true }
version = "0.5.0" version = "0.6.0"
[lib] [lib]
name = "granc_core" name = "granc_core"