Skip to content

Commit 8067814

Browse files
committed
meta: Update CHANGELOG.md for v23.11.1 hotfix
1 parent 3f35f83 commit 8067814

File tree

7 files changed

+21
-8
lines changed

7 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6+
7+
## [23.11.1] - 2023-12-15: "Bitcoin Orangepaper"
8+
9+
This is a hotfix release to address a couple of issues in the release.
10+
11+
### Fixed
12+
13+
- channeld: We could crash `closingd` by sending it a `channeld` message ([#6937])
14+
15+
[#6937]: https://github.com/ElementsProject/lightning/pull/6937
16+
17+
[v23.11.1]: https://github.com/ElementsProject/lightning/releases/tag/v23.11.1
18+
619
## [23.11] - 2023-11-28: "Bitcoin Orangepaper"
720

821
This release named by Shahana Farooqui
@@ -149,7 +162,7 @@ Bugfix release for bad issues found since 23.08 which can't wait for 23.11, and
149162

150163
- Protocol: Fixed a wrong number type being used in routes ([#6642])
151164
- JSON-RPC: `showrunes` on a specific rune would always say `stored`: false. ([#6640])
152-
- MacOS: `clnrest` now works ([#6605])
165+
- MacOS: `clnrest` now works ([#6605])
153166
- Build: test for `python3` or `python`, rather than assuming `python3` ([#6630])
154167

155168

@@ -417,7 +430,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
417430
- JSON-RPC: `close`, `fundchannel`, `fundpsbt`, `multifundchannel`, `multiwithdraw`, `txprepare`, `upgradewallet`, `withdraw` `feerate` (`feerange` for `close`) expressed as, "delayed_to_us", "htlc_resolution", "max_acceptable" or "min_acceptable". Use explicit block counts or *slow*/*normal*/*urgent*/*minimum*. ([#6120])
418431
- Plugins: `estimatefees` returning feerates by name (e.g. "opening"); use `fee_floor` and `feerates`. ([#6120])
419432
- Protocol: Not setting `option_scid_alias` in `option_channel` `channel_type` for unannounced channels. ([#6136])
420-
433+
421434

422435
### Removed
423436

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.11"
6+
__version__ = "23.11.1"
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.11"
3+
version = "23.11.1"
44
description = "Client library and plugin library for Core Lightning"
55
authors = ["Christian Decker <decker.christian@gmail.com>"]
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.11"
7+
__version__ = "23.11.1"
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.11"
3+
version = "23.11.1"
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 <decker.christian@gmail.com>"]
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.11"
1+
__version__ = "23.11.1"
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.11"
3+
version = "23.11.1"
44
description = "Test your Core Lightning integration, plugins or whatever you want"
55
authors = ["Christian Decker <decker.christian@gmail.com>"]
66
license = "BSD-MIT"

0 commit comments

Comments
 (0)