Skip to content

Commit 6368aa9

Browse files
meta: update changelog for v25.02rc2
Changelog-None
1 parent 2408233 commit 6368aa9

File tree

12 files changed

+23
-16
lines changed

12 files changed

+23
-16
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.02rc1
1+
25.02rc2

CHANGELOG.md

+9-2
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-
## [25.02rc1] - 2025-02-24:
6+
## [25.02rc2] - 2025-02-26:
77

88
### Added
99

@@ -63,6 +63,8 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
6363
- gossmap: Don't crash on ZFS while reading `gossip_store`. ([#8053])
6464
- lightningd: Tell plugins our bolt12 features (so our bolt12 invoices explicitly allow MPP). ([#8059])
6565
- lightningd: Allow more time for plugin startup so slow nodes don't time out on startup. ([#8060])
66+
- `xpay`: Corrected the CLTV values in blinded paths which sometimes caused spurious failures. ([#8121])
67+
- Protocol: We now renegotiate an interrupted close, even if we don't need it, instead of sending an error. ([#8116])
6668
- bcli: `getblockfrompeer` no longer requests the block from the first peer only. ([#8069])
6769
- lightning-cli: Fixed "malformed response" bug. ([#7924])
6870
- lightning-cli: Fixed access to man pages from the installed directory. ([#8077])
@@ -80,7 +82,12 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
8082

8183
### EXPERIMENTAL
8284

85+
- onchaind: Correctly collect our own (delayed) funds if we have a unilateral close when we are still offering a lease. ([#8111])
8386

87+
88+
[#8111]: https://github.com/ElementsProject/lightning/pull/8111
89+
[#8121]: https://github.com/ElementsProject/lightning/pull/8121
90+
[#8116]: https://github.com/ElementsProject/lightning/pull/8116
8491
[#8024]: https://github.com/ElementsProject/lightning/pull/8024
8592
[#7969]: https://github.com/ElementsProject/lightning/pull/7969
8693
[#7921]: https://github.com/ElementsProject/lightning/pull/7921
@@ -122,7 +129,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
122129
[#7942]: https://github.com/ElementsProject/lightning/pull/7942
123130
[#7772]: https://github.com/ElementsProject/lightning/pull/7772
124131
[#8060]: https://github.com/ElementsProject/lightning/pull/8060
125-
[25.02rc1]: https://github.com/ElementsProject/lightning/releases/tag/v25.02rc1
132+
[25.02rc2]: https://github.com/ElementsProject/lightning/releases/tag/v25.02rc2
126133

127134

128135
## [24.11.1] - 2024-12-16: "The lightning-dev Mailing List II"

contrib/msggen/msggen/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15376,7 +15376,7 @@
1537615376
"port": 19735
1537715377
}
1537815378
],
15379-
"version": "v25.02rc1",
15379+
"version": "v25.02rc2",
1538015380
"blockheight": 110,
1538115381
"network": "regtest",
1538215382
"fees_collected_msat": 0,

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .gossmapstats import GossmapStats
55
from .version import NodeVersion, VersionSpec
66

7-
__version__ = "25.02rc1"
7+
__version__ = "25.02rc2"
88

99
__all__ = [
1010
"LightningRpc",

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 = "25.02rc1"
3+
version = "25.02rc2"
44
description = "Client library and plugin library for Core Lightning"
55
authors = ["Christian Decker <decker.christian@gmail.com>"]
66
license = "BSD-MIT"

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__ = "25.02rc1"
7+
__version__ = "25.02rc2"
88

99
__all__ = [
1010
"Invoice",

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 = "25.02rc1"
3+
version = "25.02rc2"
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 <decker.christian@gmail.com>"]
66
license = "BSD-MIT"

contrib/pyln-testing/pyln/testing/__init__.py

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

33
__all__ = [
44
"__version__",

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 = "25.02rc1"
3+
version = "25.02rc2"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = ["Christian Decker <decker.christian@gmail.com>"]
66
license = "BSD-MIT"

doc/schemas/lightning-getinfo.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
"port": 19735
411411
}
412412
],
413-
"version": "v25.02rc1",
413+
"version": "v25.02rc2",
414414
"blockheight": 110,
415415
"network": "regtest",
416416
"fees_collected_msat": 0,

plugins/wss-proxy/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "wss-proxy"
3-
version = "25.02rc1"
3+
version = "25.02rc2"
44
description = "Web secure socket proxy"
55
authors = ["ShahanaFarooqui <sfarooqui@blockstream.com>"]
66

poetry.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)