Skip to content

Commit 36367ca

Browse files
meta: update changelog for v24.05
Changelog-None
1 parent b17bc9c commit 36367ca

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

Diff for: CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ 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.05rc2] - 2024-05-29: "CODENAME"
6+
## [24.05] - 2024-06-04: "The Infinitely Divisible Satoshi"
77

8-
This release named by @USERNAME.
8+
This release named by @daywalker90.
99

1010
### Added
1111

@@ -92,6 +92,9 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
9292
- offers: Fix blinded paths in invoices - use node_id and set final node's CLTV delta. ([#7311])
9393
- Plugins: The recover plugin now avoids trying to recover closed channels. ([#7216])
9494
- Gossmap: Avoid adding redundant channel announcements to the gossip_store. ([#7330])
95+
- Protocol: forward legacy non-TLV onions which we removed in 22.11 and spec itself in Feb 2022. Still sent by LND nodes who haven't seen our node_announcement. ([#7352])
96+
- Protocol: we once again send CHANNEL_REESTABLISH responses on closing channels. ([#7353])
97+
- Fixed a crash when processing pending node announcements. ([#7368])
9598

9699

97100
### EXPERIMENTAL
@@ -101,6 +104,9 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
101104

102105

103106

107+
[#7368]: https://github.com/ElementsProject/lightning/pull/7368
108+
[#7353]: https://github.com/ElementsProject/lightning/pull/7353
109+
[#7352]: https://github.com/ElementsProject/lightning/pull/7352
104110
[#7159]: https://github.com/ElementsProject/lightning/pull/7159
105111
[#7116]: https://github.com/ElementsProject/lightning/pull/7116
106112
[#7230]: https://github.com/ElementsProject/lightning/pull/7230
@@ -148,7 +154,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
148154
[#7211]: https://github.com/ElementsProject/lightning/pull/7211
149155
[#7237]: https://github.com/ElementsProject/lightning/pull/7237
150156
[#7256]: https://github.com/ElementsProject/lightning/pull/7256
151-
[24.05rc1]: https://github.com/ElementsProject/lightning/releases/tag/v24.05rc1
157+
[24.05]: https://github.com/ElementsProject/lightning/releases/tag/v24.05
152158

153159

154160

Diff for: contrib/pyln-client/pyln/client/__init__.py

+1-1
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.05rc2"
6+
__version__ = "24.05"
77

88
__all__ = [
99
"LightningRpc",

Diff for: contrib/pyln-client/pyproject.toml

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

Diff for: contrib/pyln-proto/pyln/proto/__init__.py

+1-1
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.05rc2"
7+
__version__ = "24.05"
88

99
__all__ = [
1010
"Invoice",

Diff for: contrib/pyln-proto/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-proto"
3-
version = "24.05rc2"
3+
version = "24.05"
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"

Diff for: contrib/pyln-testing/pyln/testing/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "24.05rc2"
1+
__version__ = "24.05"
22

33
__all__ = [
44
"__version__",

Diff for: contrib/pyln-testing/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyln-testing"
3-
version = "24.05rc2"
3+
version = "24.05"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = ["Christian Decker <[email protected]>"]
66
license = "BSD-MIT"

0 commit comments

Comments
 (0)