mirror of
https://codeberg.org/JasterV/granc.git
synced 2026-04-26 18:40:05 +00:00
chore: release-plz update (#3)
This is an automated PR generated by [release-plz](https://github.com/MarcoIeni/release-plz) via Woodpecker CI. Co-authored-by: release-plz-bot <bot@codeberg.org> Co-authored-by: JasterV <49537445+JasterV@users.noreply.github.com> Reviewed-on: https://codeberg.org/JasterV/granc/pulls/3
This commit is contained in:
parent
288f8a06e3
commit
74b4f3aac0
4 changed files with 13 additions and 5 deletions
|
|
@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [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
|
## `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
|
- [chore] Migration to Codeberg
|
||||||
|
|
|
||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -324,7 +324,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "granc"
|
name = "granc"
|
||||||
version = "0.7.4"
|
version = "0.7.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"colored",
|
"colored",
|
||||||
|
|
@ -351,7 +351,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "granc_core"
|
name = "granc_core"
|
||||||
version = "0.6.2"
|
version = "0.6.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"granc-test-support",
|
"granc-test-support",
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ publish = true
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
version = "0.6.2"
|
version = "0.6.3"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "granc_core"
|
name = "granc_core"
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ publish = true
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
version = "0.7.4"
|
version = "0.7.5"
|
||||||
|
|
||||||
[package.metadata.binstall]
|
[package.metadata.binstall]
|
||||||
pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-{ target }.{ archive-format }"
|
pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-{ target }.{ archive-format }"
|
||||||
|
|
@ -23,7 +23,7 @@ pkg-fmt = "zip"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.5.60", features = ["derive"] }
|
clap = { version = "4.5.60", features = ["derive"] }
|
||||||
colored = "3.1.1"
|
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 }
|
serde_json = { workspace = true }
|
||||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
||||||
futures-util = { workspace = true }
|
futures-util = { workspace = true }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue