From d74d8a6bf2e9b65e6fdcd94941567a90dd74ab5f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Jan 2026 11:38:45 +0100 Subject: [PATCH] chore: release (#27) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore(granc): release v0.5.0 * Update CHANGELOG.md * update granc dep --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Víctor Martínez <49537445+JasterV@users.noreply.github.com> --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 22 +++++++++++++++++++++- granc-core/Cargo.toml | 2 +- granc/Cargo.toml | 4 ++-- 4 files changed, 35 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d85980..3dc1167 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## `granc` - [0.5.1](https://github.com/JasterV/granc/compare/granc-v0.5.0...granc-v0.5.1) - 2026-01-24 + +### Other + +- **Update deps**: Update `granc_core` to `0.4.1` + +## `granc_core` - [0.4.1](https://github.com/JasterV/granc/compare/granc_core-v0.4.0...granc_core-v0.4.1) - 2026-01-27 + +### Other +- **Internal clean up**: We've replaced our own script that generated the Reflection client to use `tonic-reflection` instead. ([#29](https://github.com/JasterV/granc/pull/29)) + ## `granc` - [0.5.0](https://github.com/JasterV/granc/compare/granc-v0.2.4...granc-v0.5.0) - 2026-01-24 ### Added diff --git a/Cargo.lock b/Cargo.lock index 4c293cc..c2ceffe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -340,7 +340,7 @@ version = "0.5.0" dependencies = [ "clap", "colored", - "granc_core", + "granc_core 0.4.0", "serde_json", "tokio", "tonic", @@ -349,6 +349,26 @@ dependencies = [ [[package]] name = "granc_core" version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "470843569f07903a7e34f3b37c8d155e3a13e8450da1aea4dd6126370ce8259d" +dependencies = [ + "futures-util", + "http", + "http-body", + "prost", + "prost-reflect", + "prost-types", + "serde_json", + "thiserror", + "tokio", + "tokio-stream", + "tonic", + "tonic-prost", +] + +[[package]] +name = "granc_core" +version = "0.4.1" dependencies = [ "echo-service", "futures-util", diff --git a/granc-core/Cargo.toml b/granc-core/Cargo.toml index bd0cd02..874f577 100644 --- a/granc-core/Cargo.toml +++ b/granc-core/Cargo.toml @@ -11,7 +11,7 @@ publish = true readme = "README.md" repository = { workspace = true } rust-version = { workspace = true } -version = "0.4.0" +version = "0.4.1" [lib] name = "granc_core" diff --git a/granc/Cargo.toml b/granc/Cargo.toml index e63fc9f..6a0fa69 100644 --- a/granc/Cargo.toml +++ b/granc/Cargo.toml @@ -11,12 +11,12 @@ publish = true readme = "../README.md" repository = { workspace = true } rust-version = { workspace = true } -version = "0.5.0" +version = "0.5.1" [dependencies] clap = { version = "4.5.54", features = ["derive"] } colored = "3.1.1" -granc_core = "0.4.0" +granc_core = "0.4.1" serde_json = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } tonic = { workspace = true }