mirror of
https://codeberg.org/JasterV/granc.git
synced 2026-04-26 18:40:05 +00:00
chore: release
This commit is contained in:
parent
9ce4f73189
commit
9a44715a0a
4 changed files with 18 additions and 8 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## `granc` - [0.7.4](https://github.com/JasterV/granc/compare/granc-v0.7.3...granc-v0.7.4) - 2026-03-07
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- *(deps)* bump clap from 4.5.57 to 4.5.60 ([#58](https://github.com/JasterV/granc/pull/58))
|
||||||
|
|
||||||
|
## `granc_core` - [0.7.0](https://github.com/JasterV/granc/compare/granc_core-v0.6.1...granc_core-v0.7.0) - 2026-03-07
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- *(deps)* bump futures-util from 0.3.31 to 0.3.32 ([#55](https://github.com/JasterV/granc/pull/55))
|
||||||
|
|
||||||
## `granc` - [0.7.3](https://github.com/JasterV/granc/compare/granc-v0.7.2...granc-v0.7.3) - 2026-02-11
|
## `granc` - [0.7.3](https://github.com/JasterV/granc/compare/granc-v0.7.2...granc-v0.7.3) - 2026-02-11
|
||||||
|
|
||||||
- [fix] Support for cargo binstall
|
- [fix] Support for cargo binstall
|
||||||
|
|
|
||||||
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -323,12 +323,12 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "granc"
|
name = "granc"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"colored",
|
"colored",
|
||||||
"granc-test-support",
|
"granc-test-support",
|
||||||
"granc_core 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"granc_core 0.6.1",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"tokio",
|
"tokio",
|
||||||
]
|
]
|
||||||
|
|
@ -350,9 +350,10 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "granc_core"
|
name = "granc_core"
|
||||||
version = "0.6.1"
|
version = "0.6.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "12684196af508c702e011ed6d6c3272c089b562fdd7a3e4d481d91859f7cfb89"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"granc-test-support",
|
|
||||||
"http",
|
"http",
|
||||||
"http-body",
|
"http-body",
|
||||||
"prost",
|
"prost",
|
||||||
|
|
@ -368,11 +369,10 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "granc_core"
|
name = "granc_core"
|
||||||
version = "0.6.1"
|
version = "0.7.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "12684196af508c702e011ed6d6c3272c089b562fdd7a3e4d481d91859f7cfb89"
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-util",
|
"futures-util",
|
||||||
|
"granc-test-support",
|
||||||
"http",
|
"http",
|
||||||
"http-body",
|
"http-body",
|
||||||
"prost",
|
"prost",
|
||||||
|
|
|
||||||
|
|
@ -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.1"
|
version = "0.7.0"
|
||||||
|
|
||||||
[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.3"
|
version = "0.7.4"
|
||||||
|
|
||||||
[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 }"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue