From 9f4d398c3f7886b476ff69d9a88e956e4492a4b2 Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Mon, 15 Sep 2025 19:21:25 +0200 Subject: [PATCH] crates: bump cln-grpc-plugin to v0.5.0 Changelog-None --- Cargo.lock | 2 +- plugins/grpc-plugin/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75f85c53a514..90292f35507e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -504,7 +504,7 @@ dependencies = [ [[package]] name = "cln-grpc-plugin" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "cln-grpc", diff --git a/plugins/grpc-plugin/Cargo.toml b/plugins/grpc-plugin/Cargo.toml index 35c774c58c5f..a4226b8c2fff 100644 --- a/plugins/grpc-plugin/Cargo.toml +++ b/plugins/grpc-plugin/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "cln-grpc-plugin" -version = "0.4.0" +version = "0.5.0" description = "A Core Lightning plugin that re-exposes the JSON-RPC over grpc. Authentication is done via mTLS." license = "MIT" @@ -17,7 +17,7 @@ anyhow = "1.0" log = "0.4" rcgen = { version = "0.13.1", features = ["pem", "x509-parser"] } prost = "0.12" -cln-grpc = { version = "0.5", features = ["server"], path = "../../cln-grpc"} +cln-grpc = { version = "0.5", features = ["server"], path = "../../cln-grpc" } cln-plugin = { version = "0.5", path = "../../plugins" } cln-rpc = { version = "0.5", path = "../../cln-rpc" } serde_json = "1.0.113"