Skip to content

Commit 4f258a9

Browse files
meta: Add changelog for 23.05rc4
1 parent 3a2b703 commit 4f258a9

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

CHANGELOG.md

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

66

7-
## [23.05rc3] - 2023-05-05
7+
## [23.05rc4] - 2023-05-09
88

99
### Added
1010

@@ -50,7 +50,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
5050

5151
### Removed
5252

53-
- JSON-RPC: the "msat" suffix on millisatoshi fields, as deprecated in v0.12.0. ([#5986])
53+
- JSON-RPC: the "msat" suffix on millisatoshi fields, as deprecated in v0.12.0. ([#5986], [#6245])
5454
- JSON-RPC: all the non-msat-named millisatoshi fields deprecated in v0.12.0. ([#5986])
5555
- JSON-RPC: `listpeers`.`local_msat` and `listpeers`.`remote_msat` (deprecated v0.12.0) ([#5986])
5656
- JSON-RPC: `checkmessage` now always returns an error when the pubkey is not specified and it is unknown in the network graph (deprecated v0.12.0) ([#5986])
@@ -83,6 +83,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
8383
[#5967]: https://github.com/ElementsProject/lightning/pull/5967
8484
[#5898]: https://github.com/ElementsProject/lightning/pull/5898
8585
[#5986]: https://github.com/ElementsProject/lightning/pull/5986
86+
[#6245]: https://github.com/ElementsProject/lightning/pull/6245
8687
[#6136]: https://github.com/ElementsProject/lightning/pull/6136
8788
[#6128]: https://github.com/ElementsProject/lightning/pull/6128
8889
[#6154]: https://github.com/ElementsProject/lightning/pull/6154

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.05rc3"
6+
__version__ = "23.05rc4"
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.05rc3"
3+
version = "23.05rc4"
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.05rc3"
7+
__version__ = "23.05rc4"
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.05rc3"
3+
version = "23.05rc4"
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.05rc3"
1+
__version__ = "23.05rc4"
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.05rc3"
3+
version = "23.05rc4"
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)