mirror of
https://codeberg.org/JasterV/granc.git
synced 2026-04-26 18:40:05 +00:00
chore: release (#27)
* chore(granc): release v0.5.0 * Update CHANGELOG.md * update granc dep --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Víctor Martínez <49537445+JasterV@users.noreply.github.com>
This commit is contained in:
parent
17e6fe57a0
commit
d74d8a6bf2
4 changed files with 35 additions and 4 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## `granc` - [0.5.1](https://github.com/JasterV/granc/compare/granc-v0.5.0...granc-v0.5.1) - 2026-01-24
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- **Update deps**: Update `granc_core` to `0.4.1`
|
||||||
|
|
||||||
|
## `granc_core` - [0.4.1](https://github.com/JasterV/granc/compare/granc_core-v0.4.0...granc_core-v0.4.1) - 2026-01-27
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- **Internal clean up**: We've replaced our own script that generated the Reflection client to use `tonic-reflection` instead. ([#29](https://github.com/JasterV/granc/pull/29))
|
||||||
|
|
||||||
## `granc` - [0.5.0](https://github.com/JasterV/granc/compare/granc-v0.2.4...granc-v0.5.0) - 2026-01-24
|
## `granc` - [0.5.0](https://github.com/JasterV/granc/compare/granc-v0.2.4...granc-v0.5.0) - 2026-01-24
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
22
Cargo.lock
generated
22
Cargo.lock
generated
|
|
@ -340,7 +340,7 @@ version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"colored",
|
"colored",
|
||||||
"granc_core",
|
"granc_core 0.4.0",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tonic",
|
"tonic",
|
||||||
|
|
@ -349,6 +349,26 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "granc_core"
|
name = "granc_core"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "470843569f07903a7e34f3b37c8d155e3a13e8450da1aea4dd6126370ce8259d"
|
||||||
|
dependencies = [
|
||||||
|
"futures-util",
|
||||||
|
"http",
|
||||||
|
"http-body",
|
||||||
|
"prost",
|
||||||
|
"prost-reflect",
|
||||||
|
"prost-types",
|
||||||
|
"serde_json",
|
||||||
|
"thiserror",
|
||||||
|
"tokio",
|
||||||
|
"tokio-stream",
|
||||||
|
"tonic",
|
||||||
|
"tonic-prost",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "granc_core"
|
||||||
|
version = "0.4.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"echo-service",
|
"echo-service",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
|
|
|
||||||
|
|
@ -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.4.0"
|
version = "0.4.1"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "granc_core"
|
name = "granc_core"
|
||||||
|
|
|
||||||
|
|
@ -11,12 +11,12 @@ publish = true
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.5.54", features = ["derive"] }
|
clap = { version = "4.5.54", features = ["derive"] }
|
||||||
colored = "3.1.1"
|
colored = "3.1.1"
|
||||||
granc_core = "0.4.0"
|
granc_core = "0.4.1"
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
||||||
tonic = { workspace = true }
|
tonic = { workspace = true }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue