diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fbe873..003bb9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/Cargo.lock b/Cargo.lock index 5d4b5c9..deeac8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/Cargo.toml b/Cargo.toml index 98ef242..246c8c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"