From ffe395675de6f35936d49fc51300dfc81be90845 Mon Sep 17 00:00:00 2001 From: daywalker90 <8257956+daywalker90@users.noreply.github.com> Date: Thu, 26 Mar 2026 19:48:12 +0100 Subject: [PATCH] cln-grpc-plugin: bump version to v0.6.0 otherwise our CI action complains about inconsistency 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 c21e7593a753..8822b0cae956 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,7 +488,7 @@ dependencies = [ [[package]] name = "cln-grpc-plugin" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "cln-grpc", diff --git a/plugins/grpc-plugin/Cargo.toml b/plugins/grpc-plugin/Cargo.toml index fa955ad9614f..450c87b43f4d 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.5.0" +version = "0.6.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 = { workspace = true, features = ["server"]} +cln-grpc = { workspace = true, features = ["server"] } cln-plugin = { workspace = true } cln-rpc = { workspace = true } serde_json = "1.0.113"