Skip to content

Commit c59d9be

Browse files
committed
second release candidate for 25.12
1 parent 385b6a9 commit c59d9be

File tree

11 files changed

+15
-13
lines changed

11 files changed

+15
-13
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v25.12rc1
1+
v25.12rc2

CHANGELOG.md

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

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

7-
## [25.12rc1] - 2025-11-25: "Boltz's Seamless Upgrade Experience"
7+
## [25.12rc2] - 2025-11-28: "Boltz's Seamless Upgrade Experience"
88

99
Release Candidate for Core Lightning v25.12
1010

@@ -16,6 +16,7 @@ This release named by @sangbida
1616
- JSON-RPC: `fundchannel_complete` new parameter `withhold` for zero-conf channels (default false). ([#8546])
1717
- Plugins: `xpay` will now wait if it suspects a payment failure is due to a height disagreement with the final node. ([#8645])
1818
- Tools: `lightning-hsmtool` now supports hsm_secret files using a 12-word mnemonic. ([#8400])
19+
- Tools: `lightningd-downgrade` can downgrade your database from v25.12 to v25.09 if something goes wrong. ([#8702])
1920
- JSON-RPC: `askrene-bias-node`: an RPC command to set a bias on node's outgoing or incoming channels. ([#8608])
2021
- JSON-RPC: `listpeerchannels` `funding` object `withheld` flag, and `listclosedchannels` `funding_withheld` flags, indicating fundchannel_complete was called with the `withheld` parameter true. ([#8546])
2122
- JSON-RPC: `psbt` field in `funding` in listpeerchannels, and `funding_psbt` in listclosedchannels. ([#8546])
@@ -93,6 +94,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
9394
- Splicing: Fixed crash when we splice a channel which hasn't been announced yet. ([#8555])
9495
- JSON-RPC: `cancelrecurringinvoice` command to send new "don't expect any more invoice requests" msg to recurring bolt12 invoices. ([#8398])
9596

97+
[#8702]: https://github.com/ElementsProject/lightning/pull/8702
9698
[#8506]: https://github.com/ElementsProject/lightning/pull/8506
9799
[#8646]: https://github.com/ElementsProject/lightning/pull/8646
98100
[#8546]: https://github.com/ElementsProject/lightning/pull/8546
@@ -131,7 +133,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
131133
[#8651]: https://github.com/ElementsProject/lightning/pull/8651
132134
[#8561]: https://github.com/ElementsProject/lightning/pull/8561
133135
[#8302]: https://github.com/ElementsProject/lightning/pull/8302
134-
[v25.12rc1]: https://github.com/ElementsProject/lightning/releases/tag/v25.12rc1
136+
[v25.12rc2]: https://github.com/ElementsProject/lightning/releases/tag/v25.12rc2
135137

136138

137139
## [25.09.3] - 2025-11-06: "Hot Wallet Guardian IV"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .gossmapstats import GossmapStats
55
from .version import NodeVersion
66

7-
__version__ = "v25.12rc1"
7+
__version__ = "v25.12rc2"
88

99
__all__ = [
1010
"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
[project]
22
name = "pyln-client"
3-
version = "v25.12rc1"
3+
version = "v25.12rc2"
44
description = "Client library and plugin library for Core Lightning"
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
66
license = { text = "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__ = "v25.12rc1"
7+
__version__ = "v25.12rc2"
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
[project]
22
name = "pyln-proto"
3-
version = "v25.12rc1"
3+
version = "v25.12rc2"
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 = [
66
{name = "Christian Decker", email = "[email protected]"}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "v25.12rc1"
1+
__version__ = "v25.12rc2"
22

33
__all__ = [
44
"__version__",

contrib/pyln-testing/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyln-testing"
3-
version = "v25.12rc1"
3+
version = "v25.12rc2"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = [{ name = "Christian Decker", email = "[email protected]" }]
66
license = { text = "BSD-MIT" }

tools/hsmtool

3.01 MB
Binary file not shown.

tools/reckless

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ from urllib.error import HTTPError
2121
import venv
2222

2323

24-
__VERSION__ = 'v25.12rc1'
24+
__VERSION__ = 'v25.12rc2'
2525

2626
logging.basicConfig(
2727
level=logging.INFO,

0 commit comments

Comments
 (0)