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]
|
||||
|
||||
## `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
|
||||
|
||||
### Added
|
||||
|
|
|
|||
22
Cargo.lock
generated
22
Cargo.lock
generated
|
|
@ -340,7 +340,7 @@ version = "0.5.0"
|
|||
dependencies = [
|
||||
"clap",
|
||||
"colored",
|
||||
"granc_core",
|
||||
"granc_core 0.4.0",
|
||||
"serde_json",
|
||||
"tokio",
|
||||
"tonic",
|
||||
|
|
@ -349,6 +349,26 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "granc_core"
|
||||
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 = [
|
||||
"echo-service",
|
||||
"futures-util",
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ publish = true
|
|||
readme = "README.md"
|
||||
repository = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
|
||||
[lib]
|
||||
name = "granc_core"
|
||||
|
|
|
|||
|
|
@ -11,12 +11,12 @@ publish = true
|
|||
readme = "../README.md"
|
||||
repository = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
version = "0.5.0"
|
||||
version = "0.5.1"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.5.54", features = ["derive"] }
|
||||
colored = "3.1.1"
|
||||
granc_core = "0.4.0"
|
||||
granc_core = "0.4.1"
|
||||
serde_json = { workspace = true }
|
||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|
||||
tonic = { workspace = true }
|
||||
|
|
|
|||
Loading…
Reference in a new issue