Skip to content

Commit ea23122

Browse files
meta: Add changelog for 23.05rc3
1 parent 708fb17 commit ea23122

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
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
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66

7-
## [23.05rc2] - 2023-04-26
7+
## [23.05rc3] - 2023-05-05
88

99
### Added
1010

@@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
2424
- `pyln-client`: Improvements on the gossmap implementation ([#6012])
2525
- `hsmtool`: `makerune` new command to make a master rune for a node. ([#6097])
2626
- JSON-RPC: `setpsbtversion`: new command to aid debugging and compatibility ([#5898])
27+
- `grpc`: Added mapping for `listpeerchannels`, `listclosedchannels`, `decode` and `decodepay` RPC methods ([#6229])
2728

2829

2930
### Changed
@@ -37,6 +38,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
3738
- `msggen`: The generated interfaces `cln-rpc` anc `cln-grpc` can now work with a range of versions rather than having to match the CLN version ([#6142])
3839
- `grpc`: The mTLS private keys are no longer group-readable ([#6075])
3940

41+
4042
### Deprecated
4143

4244
Note: You should always set `allow-deprecated-apis=false` to test for changes.
@@ -100,6 +102,8 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
100102
[#6115]: https://github.com/ElementsProject/lightning/pull/6115
101103
[#6109]: https://github.com/ElementsProject/lightning/pull/6109
102104
[#6158]: https://github.com/ElementsProject/lightning/pull/6158
105+
[#6184]: https://github.com/ElementsProject/lightning/pull/6184
106+
[#6229]: https://github.com/ElementsProject/lightning/pull/6229
103107

104108

105109
## [23.02.2] - 2023-03-14: "CBDC Backing Layer III"
@@ -2383,6 +2387,7 @@ There predate the BOLT specifications, and are only of vague historic interest:
23832387
6. [0.5.1] - 2016-10-21
23842388
7. [0.5.2] - 2016-11-21: "Bitcoin Savings & Trust Daily Interest II"
23852389

2390+
[23.05]: https://github.com/ElementsProject/lightning/releases/tag/v23.05
23862391
[23.02.1]: https://github.com/ElementsProject/lightning/releases/tag/v23.02.1
23872392
[23.02]: https://github.com/ElementsProject/lightning/releases/tag/v23.02
23882393
[0.12.0]: https://github.com/ElementsProject/lightning/releases/tag/v0.12.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__ = "23.05rc2"
6+
__version__ = "23.05rc3"
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 = "23.05rc2"
3+
version = "23.05rc3"
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__ = "23.05rc2"
7+
__version__ = "23.05rc3"
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 = "23.05rc2"
3+
version = "23.05rc3"
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"

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__ = "23.05rc2"
1+
__version__ = "23.05rc3"
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
[tool.poetry]
22
name = "pyln-testing"
3-
version = "23.05rc2"
3+
version = "23.05rc3"
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)