chore: release v0.3.0 (#21)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-01-22 15:45:42 +01:00 committed by GitHub
commit 21b0b524d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 16 additions and 8 deletions

View file

@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## `granc_core` - [0.3.0](https://github.com/JasterV/granc/compare/granc_core-v0.2.4...granc_core-v0.3.0) - 2026-01-22
- Separate reflection generation binary to not be published ([#20](https://github.com/JasterV/granc/pull/20))
## `granc` - [0.3.0](https://github.com/JasterV/granc/compare/granc_core-v0.2.4...granc_core-v0.3.0) - 2026-01-22
- Separate reflection generation binary to not be published ([#20](https://github.com/JasterV/granc/pull/20))
## `granc` - [0.2.4](https://github.com/JasterV/granc/compare/granc-v0.2.3...granc-v0.2.4) - 2026-01-22
- **Published granc-core** as a library crate `granc-core` ([#16](https://github.com/JasterV/granc/pull/16))

44
Cargo.lock generated
View file

@ -327,10 +327,10 @@ dependencies = [
[[package]]
name = "granc"
version = "0.2.4"
version = "0.3.0"
dependencies = [
"clap",
"granc_core 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"granc_core 0.2.4",
"serde_json",
"tokio",
"tonic",
@ -343,26 +343,6 @@ dependencies = [
"tonic-prost-build",
]
[[package]]
name = "granc_core"
version = "0.2.4"
dependencies = [
"echo-service",
"futures-util",
"http",
"http-body",
"prost",
"prost-reflect",
"prost-types",
"serde_json",
"thiserror",
"tokio",
"tokio-stream",
"tonic",
"tonic-prost",
"tonic-reflection",
]
[[package]]
name = "granc_core"
version = "0.2.4"
@ -383,6 +363,26 @@ dependencies = [
"tonic-prost",
]
[[package]]
name = "granc_core"
version = "0.3.0"
dependencies = [
"echo-service",
"futures-util",
"http",
"http-body",
"prost",
"prost-reflect",
"prost-types",
"serde_json",
"thiserror",
"tokio",
"tokio-stream",
"tonic",
"tonic-prost",
"tonic-reflection",
]
[[package]]
name = "h2"
version = "0.4.13"

View file

@ -9,7 +9,7 @@ homepage = "https://github.com/JasterV/granc"
license = "MIT OR Apache-2.0"
repository = "https://github.com/JasterV/granc"
rust-version = "1.89"
version = "0.2.4"
version = "0.3.0"
[workspace.dependencies]
serde_json = "1.0.149"