Skip to content

Commit bb0d9e7

Browse files
authored
Merge branch 'ElementsProject:master' into add-testnet4-support
2 parents 1b58069 + dcb6f2c commit bb0d9e7

File tree

19 files changed

+33
-33
lines changed

19 files changed

+33
-33
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.11rc4
1+
24.11

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6-
## [24.11rc4] - 2024-12-02: "The lightning-dev Mailing List"
6+
## [24.11] - 2024-12-09: "The lightning-dev Mailing List"
77

88
This release named by Dusty Daemon.
99

@@ -180,7 +180,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
180180
[#7797]: https://github.com/ElementsProject/lightning/pull/7797
181181
[#7892]: https://github.com/ElementsProject/lightning/pull/7892
182182
[#7910]: https://github.com/ElementsProject/lightning/pull/7910
183-
[24.11rc4]: https://github.com/ElementsProject/lightning/releases/tag/v24.11rc4
183+
[24.11]: https://github.com/ElementsProject/lightning/releases/tag/v24.11
184184

185185

186186
## [24.08.2] - 2024-10-18: "Steel Backed-up Channels"

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.2.0"
3+
version = "0.3.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.2", optional = true }
18+
cln-rpc = { path="../cln-rpc/", version = "0.3", 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.2" }
31+
cln-rpc = { path="../cln-rpc/", version = "0.3" }
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.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "MIT"
66
description = "An async RPC client for Core Lightning."

contrib/msggen/msggen/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15032,7 +15032,7 @@
1503215032
"port": 19735
1503315033
}
1503415034
],
15035-
"version": "v24.11rc4",
15035+
"version": "v24.11",
1503615036
"blockheight": 110,
1503715037
"network": "regtest",
1503815038
"fees_collected_msat": 0,

contrib/pyln-client/pyln/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
44
from .gossmapstats import GossmapStats
55

6-
__version__ = "24.11rc4"
6+
__version__ = "24.11"
77

88
__all__ = [
99
"LightningRpc",

contrib/pyln-client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-client"
3-
version = "24.11rc4"
3+
version = "24.11"
44
description = "Client library and plugin library for Core Lightning"
55
authors = ["Christian Decker <[email protected]>"]
66
license = "BSD-MIT"

contrib/pyln-proto/pyln/proto/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
55
from .wire import LightningConnection, LightningServerSocket
66

7-
__version__ = "24.11rc4"
7+
__version__ = "24.11"
88

99
__all__ = [
1010
"Invoice",

contrib/pyln-proto/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-proto"
3-
version = "24.11rc4"
3+
version = "24.11"
44
description = "This package implements some of the Lightning Network protocol in pure python. It is intended for protocol testing and some minor tooling only. It is not deemed secure enough to handle any amount of real funds (you have been warned!)."
55
authors = ["Christian Decker <[email protected]>"]
66
license = "BSD-MIT"

0 commit comments

Comments
 (0)