Skip to content

Commit

Permalink
CHANGELOG.md: Update for 23.11rc2
Browse files Browse the repository at this point in the history
updated changelog and pyln versions

Signed-off-by: Peter Neuroth <[email protected]>
  • Loading branch information
nepet committed Nov 16, 2023
1 parent 8f8202d commit 6521447
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 12 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,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/).

## [v23.11rc1] - 2023-11-02: "Bitcoin Orangepaper"
## [v23.11rc2] - 2023-11-02: "Bitcoin Orangepaper"

This release named by Shahana Farooqui

Expand All @@ -29,6 +29,8 @@ This release named by Shahana Farooqui
- Config: `--recover` can take a 32-byte hex string, as well as codex32. ([#6772])
- Config: `--developer` enables developer options and changes default to be "disable deprecated APIs". ([#6311])
- Cln-RPC: Implement send_custom_notification to allow sending custom notifications to other plugins. ([#6135])
- Cln-RPC: Add `wait` system to cln-rpc and cln-grpc. ([#6850])
- Cln-RPC: Add `fetchinvoice` method to cln-rpc and cln-grpc. ([#6850])
- Plugins: plugins can now specify (unknown) even messages we should accept from peers. ([#6689])
- New configurable Content-Security-Policy (CSP) header for clnrest ([#6686])
- New configurable Cross-Origin-Resource-Sharing(CSP) header for clnrest ([#6686])
Expand Down Expand Up @@ -73,6 +75,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
- JSON-RPC: `getroute` now documents that it ignores `fuzzpercent`. ([#6697])
- Rune: use runes table `id` instead `runes_uniqueid` from `vars` because it returns incorrect unique id if rune/s migrated from datastore. ([#6715])
- Added docs, testing, and some fixes related to splicing out, insufficent balance handling, and restarting during a splice. ([#6677])
- The WIRE_HSMD_SIGN_SPLICE_TX HSM capability is now correctly checked. ([#6867])


### EXPERIMENTAL
Expand Down Expand Up @@ -111,6 +114,8 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
[#6135]: https://github.com/ElementsProject/lightning/pull/6135
[#6311]: https://github.com/ElementsProject/lightning/pull/6311
[#6734]: https://github.com/ElementsProject/lightning/pull/6734
[#6850]: https://github.com/ElementsProject/lightning/pull/6850
[#6867]: https://github.com/ElementsProject/lightning/pull/6867


## [23.08.1] - 2023-09-12: "Satoshi's Successor II"
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-client/pyln/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
from .gossmapstats import GossmapStats

__version__ = "23.11"
__version__ = "23.11rc2"

__all__ = [
"LightningRpc",
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-client/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-client"
version = "23.11"
version = "23.11rc2"
description = "Client library and plugin library for Core Lightning"
authors = ["Christian Decker <[email protected]>"]
license = "BSD-MIT"
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-proto/pyln/proto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
from .wire import LightningConnection, LightningServerSocket

__version__ = "23.11"
__version__ = "23.11rc2"

__all__ = [
"Invoice",
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-proto/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-proto"
version = "23.11"
version = "23.11rc2"
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 <[email protected]>"]
license = "BSD-MIT"
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-testing/pyln/testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "23.11"
__version__ = "23.11rc2"

__all__ = [
"__version__",
Expand Down
2 changes: 1 addition & 1 deletion contrib/pyln-testing/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-testing"
version = "23.11"
version = "23.11rc2"
description = "Test your Core Lightning integration, plugins or whatever you want"
authors = ["Christian Decker <[email protected]>"]
license = "BSD-MIT"
Expand Down
2 changes: 1 addition & 1 deletion plugins/clnrest/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "clnrest"
version = "23.11"
version = "23.11rc2"
description = "Transforms RPC calls into REST APIs"
authors = ["ShahanaFarooqui <[email protected]>"]

Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6521447

Please sign in to comment.