From 4f258a935499d040f8096ccbbdf752e6a7b5e97a Mon Sep 17 00:00:00 2001 From: Shahana Farooqui Date: Tue, 9 May 2023 13:42:29 -0700 Subject: [PATCH] meta: Add changelog for 23.05rc4 --- CHANGELOG.md | 5 +++-- contrib/pyln-client/pyln/client/__init__.py | 2 +- contrib/pyln-client/pyproject.toml | 2 +- contrib/pyln-proto/pyln/proto/__init__.py | 2 +- contrib/pyln-proto/pyproject.toml | 2 +- contrib/pyln-testing/pyln/testing/__init__.py | 2 +- contrib/pyln-testing/pyproject.toml | 2 +- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8151c18988be..1328b05b29da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## [23.05rc3] - 2023-05-05 +## [23.05rc4] - 2023-05-09 ### Added @@ -50,7 +50,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes. ### Removed - - JSON-RPC: the "msat" suffix on millisatoshi fields, as deprecated in v0.12.0. ([#5986]) + - JSON-RPC: the "msat" suffix on millisatoshi fields, as deprecated in v0.12.0. ([#5986], [#6245]) - JSON-RPC: all the non-msat-named millisatoshi fields deprecated in v0.12.0. ([#5986]) - JSON-RPC: `listpeers`.`local_msat` and `listpeers`.`remote_msat` (deprecated v0.12.0) ([#5986]) - 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. [#5967]: https://github.com/ElementsProject/lightning/pull/5967 [#5898]: https://github.com/ElementsProject/lightning/pull/5898 [#5986]: https://github.com/ElementsProject/lightning/pull/5986 +[#6245]: https://github.com/ElementsProject/lightning/pull/6245 [#6136]: https://github.com/ElementsProject/lightning/pull/6136 [#6128]: https://github.com/ElementsProject/lightning/pull/6128 [#6154]: https://github.com/ElementsProject/lightning/pull/6154 diff --git a/contrib/pyln-client/pyln/client/__init__.py b/contrib/pyln-client/pyln/client/__init__.py index 426021d913af..64aa4bffe92d 100644 --- a/contrib/pyln-client/pyln/client/__init__.py +++ b/contrib/pyln-client/pyln/client/__init__.py @@ -3,7 +3,7 @@ from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits from .gossmapstats import GossmapStats -__version__ = "23.05rc3" +__version__ = "23.05rc4" __all__ = [ "LightningRpc", diff --git a/contrib/pyln-client/pyproject.toml b/contrib/pyln-client/pyproject.toml index 34df0e70ed72..4a1686041033 100644 --- a/contrib/pyln-client/pyproject.toml +++ b/contrib/pyln-client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-client" -version = "23.05rc3" +version = "23.05rc4" description = "Client library and plugin library for Core Lightning" authors = ["Christian Decker "] license = "BSD-MIT" diff --git a/contrib/pyln-proto/pyln/proto/__init__.py b/contrib/pyln-proto/pyln/proto/__init__.py index 0f78579d13e7..ee9525372f4f 100644 --- a/contrib/pyln-proto/pyln/proto/__init__.py +++ b/contrib/pyln-proto/pyln/proto/__init__.py @@ -4,7 +4,7 @@ from .onion import OnionPayload, TlvPayload, LegacyOnionPayload from .wire import LightningConnection, LightningServerSocket -__version__ = "23.05rc3" +__version__ = "23.05rc4" __all__ = [ "Invoice", diff --git a/contrib/pyln-proto/pyproject.toml b/contrib/pyln-proto/pyproject.toml index ec6f30840369..797c67ed8990 100644 --- a/contrib/pyln-proto/pyproject.toml +++ b/contrib/pyln-proto/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-proto" -version = "23.05rc3" +version = "23.05rc4" 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!)." authors = ["Christian Decker "] license = "BSD-MIT" diff --git a/contrib/pyln-testing/pyln/testing/__init__.py b/contrib/pyln-testing/pyln/testing/__init__.py index 0e87514e7f66..c9ce1d3619e3 100644 --- a/contrib/pyln-testing/pyln/testing/__init__.py +++ b/contrib/pyln-testing/pyln/testing/__init__.py @@ -1,4 +1,4 @@ -__version__ = "23.05rc3" +__version__ = "23.05rc4" __all__ = [ "__version__", diff --git a/contrib/pyln-testing/pyproject.toml b/contrib/pyln-testing/pyproject.toml index cf9b28205b6c..6c6faf94b145 100644 --- a/contrib/pyln-testing/pyproject.toml +++ b/contrib/pyln-testing/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyln-testing" -version = "23.05rc3" +version = "23.05rc4" description = "Test your Core Lightning integration, plugins or whatever you want" authors = ["Christian Decker "] license = "BSD-MIT"