From 5a69984daa2a250cd95d11236431927f9ddf56ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Martinez=20Montan=C3=A9?= Date: Fri, 24 Apr 2026 14:34:11 +0200 Subject: [PATCH] chore: release-plz update (#4) This is an automated PR generated by [release-plz](https://github.com/MarcoIeni/release-plz) via Woodpecker CI. Co-authored-by: release-plz-bot Reviewed-on: https://codeberg.org/JasterV/granc/pulls/4 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 4 ++-- granc-core/Cargo.toml | 2 +- granc/Cargo.toml | 4 ++-- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ecb579..dfc1ab5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## `granc` - [0.7.6](https://codeberg.org/JasterV/granc/compare/granc-v0.7.5...granc-v0.7.6) - 2026-04-22 + +### Other +- update dependencies + +## `granc_core` - [0.6.4](https://codeberg.org/JasterV/granc/compare/granc_core-v0.6.3...granc_core-v0.6.4) - 2026-04-22 + +### Other +- update Cargo.toml dependencies + ## `granc` - [0.7.5](https://codeberg.org/JasterV/granc/compare/granc-v0.7.4...granc-v0.7.5) - 2026-04-22 - refactor: use streams for streaming responses' ([#2](https://codeberg.org/JasterV/granc/pulls/2)) diff --git a/Cargo.lock b/Cargo.lock index d1eff8a..d6e0b25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "granc" -version = "0.7.5" +version = "0.7.6" dependencies = [ "clap", "colored", @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "granc_core" -version = "0.6.3" +version = "0.6.4" dependencies = [ "futures-util", "granc-test-support", diff --git a/granc-core/Cargo.toml b/granc-core/Cargo.toml index c38f2e6..b79d911 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.6.3" +version = "0.6.4" [lib] name = "granc_core" diff --git a/granc/Cargo.toml b/granc/Cargo.toml index fb86032..f98f52f 100644 --- a/granc/Cargo.toml +++ b/granc/Cargo.toml @@ -11,7 +11,7 @@ publish = true readme = "../README.md" repository = { workspace = true } rust-version = { workspace = true } -version = "0.7.5" +version = "0.7.6" [package.metadata.binstall] pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-{ target }.{ archive-format }" @@ -23,7 +23,7 @@ pkg-fmt = "zip" [dependencies] clap = { version = "4.6.1", features = ["derive"] } colored = "3.1.1" -granc_core = { version = "0.6.3", path = "../granc-core" } +granc_core = { version = "0.6.4", path = "../granc-core" } serde_json = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } futures-util = { workspace = true }