mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
meta: Add changelog for 23.05rc4
This commit is contained in:
parent
3a2b703ff8
commit
4f258a9354
@ -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
|
||||
|
@ -3,7 +3,7 @@ from .plugin import Plugin, monkey_patch, RpcException
|
||||
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
|
||||
from .gossmapstats import GossmapStats
|
||||
|
||||
__version__ = "23.05rc3"
|
||||
__version__ = "23.05rc4"
|
||||
|
||||
__all__ = [
|
||||
"LightningRpc",
|
||||
|
@ -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 <decker.christian@gmail.com>"]
|
||||
license = "BSD-MIT"
|
||||
|
@ -4,7 +4,7 @@ from .invoice import Invoice
|
||||
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
|
||||
from .wire import LightningConnection, LightningServerSocket
|
||||
|
||||
__version__ = "23.05rc3"
|
||||
__version__ = "23.05rc4"
|
||||
|
||||
__all__ = [
|
||||
"Invoice",
|
||||
|
@ -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 <decker.christian@gmail.com>"]
|
||||
license = "BSD-MIT"
|
||||
|
@ -1,4 +1,4 @@
|
||||
__version__ = "23.05rc3"
|
||||
__version__ = "23.05rc4"
|
||||
|
||||
__all__ = [
|
||||
"__version__",
|
||||
|
@ -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 <decker.christian@gmail.com>"]
|
||||
license = "BSD-MIT"
|
||||
|
Loading…
Reference in New Issue
Block a user