Skip to content

Commit 0a6870f

Browse files
nepetShahanaFarooqui
authored andcommitted
rust-libs: Bump versions
We bump the version to minor version 0.2 to allow ourselves to bump on patch level when we need to fix a bug or update a dependency. Changelog-Changed: Plugins: `cln-grpc` Upgrade tonic version and introduce new versioning scheme. Signed-off-by: Peter Neuroth <[email protected]>
1 parent a6366c2 commit 0a6870f

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cln-grpc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cln-grpc"
3-
version = "0.1.9"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "MIT"
66
description = "The Core Lightning API as grpc primitives. Provides the bindings used to expose the API over the network."
@@ -15,7 +15,7 @@ server = ["cln-rpc"]
1515
[dependencies]
1616
anyhow = "1.0"
1717
log = "0.4"
18-
cln-rpc = { path="../cln-rpc/", version = "^0.1", optional = true }
18+
cln-rpc = { path="../cln-rpc/", version = "0.2", optional = true }
1919
serde = { version = "1.0", features = ["derive"] }
2020
tonic = { version = "0.11", features = ["tls", "transport"] }
2121
prost = "0.12"
@@ -28,7 +28,7 @@ tokio-util = "0.7.10"
2828

2929
[dev-dependencies]
3030
serde_json = "1.0.72"
31-
cln-rpc = { path="../cln-rpc/", version = "^0.1" }
31+
cln-rpc = { path="../cln-rpc/", version = "0.2" }
3232

3333
[build-dependencies]
3434
tonic-build = "0.11"

cln-rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cln-rpc"
3-
version = "0.1.9"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "MIT"
66
description = "An async RPC client for Core Lightning."

plugins/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cln-plugin"
3-
version = "0.1.9"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "MIT"
66
description = "A CLN plugin library. Write your plugin in Rust."
@@ -27,4 +27,4 @@ tracing = { version = "^0.1", features = ["async-await", "log"] }
2727

2828
[dev-dependencies]
2929
tokio = { version = "1", features = ["macros", "rt-multi-thread", ] }
30-
cln-grpc = { version = "0.1", path = "../cln-grpc" }
30+
cln-grpc = { version = "0.2", path = "../cln-grpc" }

plugins/grpc-plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition = "2021"
33
name = "cln-grpc-plugin"
4-
version = "0.1.6"
4+
version = "0.2.0"
55

66
description = "A Core Lightning plugin that re-exposes the JSON-RPC over grpc. Authentication is done via mTLS."
77
license = "MIT"

0 commit comments

Comments
 (0)