diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b1cb3d..7ecb579 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` - [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)) + +## `granc_core` - [0.6.3](https://codeberg.org/JasterV/granc/compare/granc_core-v0.6.2...granc_core-v0.6.3) - 2026-04-22 + +- refactor: use streams for streaming responses' ([#2](https://codeberg.org/JasterV/granc/pulls/2)) + ## `granc` - [0.7.4](https://codeberg.org/JasterV/granc/compare/granc-v0.7.3...granc-v0.7.4) - 2026-03-09 - [chore] Migration to Codeberg diff --git a/Cargo.lock b/Cargo.lock index 176862d..3b586ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "granc" -version = "0.7.4" +version = "0.7.5" dependencies = [ "clap", "colored", @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "granc_core" -version = "0.6.2" +version = "0.6.3" dependencies = [ "futures-util", "granc-test-support", diff --git a/granc-core/Cargo.toml b/granc-core/Cargo.toml index d0590f9..c38f2e6 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.2" +version = "0.6.3" [lib] name = "granc_core" diff --git a/granc/Cargo.toml b/granc/Cargo.toml index 5fa4344..bf030e3 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.4" +version = "0.7.5" [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.5.60", features = ["derive"] } colored = "3.1.1" -granc_core = { version = "0.6.2", path = "../granc-core" } +granc_core = { version = "0.6.3", path = "../granc-core" } serde_json = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } futures-util = { workspace = true }