Skip to content

Commit f2b7017

Browse files
committed
v26.04rc3
1 parent 9b128d6 commit f2b7017

File tree

10 files changed

+18
-15
lines changed

10 files changed

+18
-15
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v26.04rc2
1+
v26.04rc3

CHANGELOG.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ 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-
## [26.04rc2] - 2026-04-02: TBD
7+
## [26.04rc3] - 2026-04-13: Negative Routing Fees
88

9-
This release is named by TBD.
9+
This release is named by @Chand-ra.
1010

1111
### Added
1212

13-
- Protocol: we now pad all peer messages to make them the same length (excluding LND < v21 and current Eclair). ([#8893])
13+
- Protocol: we now pad all peer messages to make them the same length (excluding LND < v21 and current Eclair). ([#8893], [#9022])
1414
- JSON-RPC: `bkpr-report` allows flexible summaries of bookkeeper income. ([#8937])
1515
- Config: `bkpr-currency` option to record conversion rate at each bookkeeper event. ([#8937])
1616
- JSON-RPC: `currencyconvert` and `currencyrate` via the new plugin `cln-currencyrate` ([#8842], [#8937])
@@ -28,6 +28,7 @@ This release is named by TBD.
2828
- JSON-RPC: `listpeerchannels` now accepts a `channel_id` filter, ([#8766])
2929
- Database: STRICT tables and security pragmas in developer mode ([#8559])
3030
- libplugin: support for options which accumulate if specified more than once ("multi": true). ([#8490])
31+
- msggen: added `splicein`, `spliceout`, and `bkpr-report` RPC method definitions. ([#9047])
3132

3233

3334
### Changed
@@ -133,8 +134,10 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
133134
[#8983]: https://github.com/ElementsProject/lightning/pull/8983
134135
[#8997]: https://github.com/ElementsProject/lightning/pull/8997
135136
[#9021]: https://github.com/ElementsProject/lightning/pull/9021
137+
[#9022]: https://github.com/ElementsProject/lightning/pull/9022
136138
[#9046]: https://github.com/ElementsProject/lightning/pull/9046
137-
[v26.04rc2]: https://github.com/ElementsProject/lightning/releases/tag/v26.04rc2
139+
[#9047]: https://github.com/ElementsProject/lightning/pull/9047
140+
[v26.04rc3]: https://github.com/ElementsProject/lightning/releases/tag/v26.04rc3
138141

139142

140143
## [25.12.1] - 2026-1-14: "Boltz's Seamless Upgrade Experience II"

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__ = "v26.04rc2"
7+
__version__ = "v26.04rc3"
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 = "v26.04rc2"
3+
version = "v26.04rc3"
44
description = "Client library and plugin library for Core Lightning"
55
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
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__ = "v26.04rc2"
7+
__version__ = "v26.04rc3"
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 = "v26.04rc2"
3+
version = "v26.04rc3"
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 = "decker.christian@gmail.com"}

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__ = "v26.04rc2"
1+
__version__ = "v26.04rc3"
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 = "v26.04rc2"
3+
version = "v26.04rc3"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
66
license = { text = "BSD-MIT" }

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__ = 'v26.04rc2'
24+
__VERSION__ = 'v26.04rc3'
2525

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

uv.lock

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

0 commit comments

Comments
 (0)