chore: release v0.2.3 (#14)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-01-21 15:58:10 +01:00 committed by GitHub
parent 27674a03ab
commit 09478c6b19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 16 additions and 7 deletions

2
Cargo.lock generated
View file

@ -327,7 +327,7 @@ dependencies = [
[[package]] [[package]]
name = "granc" name = "granc"
version = "0.2.2" version = "0.2.3"
dependencies = [ dependencies = [
"clap", "clap",
"echo-service", "echo-service",

View file

@ -7,25 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## `granc` - [0.2.3](https://github.com/JasterV/granc/compare/granc-v0.2.2...granc-v0.2.3) - 2026-01-21
### Other
- **Internal refactor**: Decouple ReflectionClient to possibly publish in a separate crate
## `granc` - [0.2.2](https://github.com/JasterV/granc/compare/granc-v0.2.1...granc-v0.2.2) - 2026-01-21 ## `granc` - [0.2.2](https://github.com/JasterV/granc/compare/granc-v0.2.1...granc-v0.2.2) - 2026-01-21
### Other ### Other
- update README.md
- Update README.md
## `granc` - [0.2.1](https://github.com/JasterV/granc/compare/granc-v0.2.0...granc-v0.2.1) - 2026-01-21 ## `granc` - [0.2.1](https://github.com/JasterV/granc/compare/granc-v0.2.0...granc-v0.2.1) - 2026-01-21
### Other ### Other
- update README
- Update README
## `granc` - [0.2.0](https://github.com/JasterV/granc/compare/granc-v0.1.0...granc-v0.2.0) - 2026-01-21 ## `granc` - [0.2.0](https://github.com/JasterV/granc/compare/granc-v0.1.0...granc-v0.2.0) - 2026-01-21
### Other ### Added
- implement automatic reflection ([#9](https://github.com/JasterV/granc/pull/9))
- update README - **Automatic Reflection**: The tool now supports automatic reflection, trying to reach the reflection service in the server if the user doesn't provide a file descriptor binary ([#9](https://github.com/JasterV/granc/pull/9))
## `granc` - 0.1.0 2026-01-20 ## `granc` - 0.1.0 2026-01-20
### Added ### Added
- **Dynamic gRPC Client**: Implemented a CLI that performs gRPC calls without generating Rust code, bridging JSON payloads to Protobuf binary format at runtime. - **Dynamic gRPC Client**: Implemented a CLI that performs gRPC calls without generating Rust code, bridging JSON payloads to Protobuf binary format at runtime.
- **Schema Loading**: Support for loading Protobuf schemas dynamically from binary `FileDescriptorSet` (`.bin` or `.pb`) files. - **Schema Loading**: Support for loading Protobuf schemas dynamically from binary `FileDescriptorSet` (`.bin` or `.pb`) files.
- **Full Streaming Support**: Automatic dispatch for all four gRPC access patterns based on the method descriptor: - **Full Streaming Support**: Automatic dispatch for all four gRPC access patterns based on the method descriptor:

View file

@ -11,7 +11,7 @@ publish = true
readme = "README.md" readme = "README.md"
repository = "https://github.com/JasterV/granc" repository = "https://github.com/JasterV/granc"
rust-version = "1.89" rust-version = "1.89"
version = "0.2.2" version = "0.2.3"
default-run = "granc" default-run = "granc"
[features] [features]