mirror of
https://codeberg.org/JasterV/granc.git
synced 2026-04-26 18:40:05 +00:00
chore: release-plz update (#1)
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> Reviewed-on: https://codeberg.org/JasterV/granc/pulls/1
This commit is contained in:
parent
23af9fc8a0
commit
69f1115cbe
5 changed files with 19 additions and 9 deletions
|
|
@ -7,6 +7,8 @@ steps:
|
|||
image: rust:latest
|
||||
pull: true
|
||||
commands:
|
||||
- apt update -y
|
||||
- apt-get install -y protobuf-compiler
|
||||
- cargo build --release --target x86_64-unknown-linux-gnu
|
||||
|
||||
package:
|
||||
|
|
|
|||
|
|
@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## `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
|
||||
|
||||
## `granc_core` - [0.6.2](https://codeberg.org/JasterV/granc/compare/granc_core-v0.6.1...granc_core-v0.6.2) - 2026-03-09
|
||||
|
||||
- [chore] Migration to Codeberg
|
||||
|
||||
## `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
|
||||
|
|
|
|||
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -323,12 +323,12 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "granc"
|
||||
version = "0.7.3"
|
||||
version = "0.7.4"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"colored",
|
||||
"granc-test-support",
|
||||
"granc_core 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"granc_core 0.6.1",
|
||||
"serde_json",
|
||||
"tokio",
|
||||
]
|
||||
|
|
@ -350,9 +350,10 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "granc_core"
|
||||
version = "0.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "12684196af508c702e011ed6d6c3272c089b562fdd7a3e4d481d91859f7cfb89"
|
||||
dependencies = [
|
||||
"futures-util",
|
||||
"granc-test-support",
|
||||
"http",
|
||||
"http-body",
|
||||
"prost",
|
||||
|
|
@ -368,11 +369,10 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "granc_core"
|
||||
version = "0.6.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "12684196af508c702e011ed6d6c3272c089b562fdd7a3e4d481d91859f7cfb89"
|
||||
version = "0.6.2"
|
||||
dependencies = [
|
||||
"futures-util",
|
||||
"granc-test-support",
|
||||
"http",
|
||||
"http-body",
|
||||
"prost",
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ publish = true
|
|||
readme = "README.md"
|
||||
repository = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
version = "0.6.1"
|
||||
version = "0.6.2"
|
||||
|
||||
[lib]
|
||||
name = "granc_core"
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ publish = true
|
|||
readme = "../README.md"
|
||||
repository = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
version = "0.7.3"
|
||||
version = "0.7.4"
|
||||
|
||||
[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 = "0.6.1"
|
||||
granc_core = { version = "0.6.2", path = "../granc-core" }
|
||||
serde_json = { workspace = true }
|
||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue