Skip to content

Commit

Permalink
meta: update changelog for v25.02rc2
Browse files Browse the repository at this point in the history
Changelog-None
  • Loading branch information
endothermicdev committed Feb 26, 2025
1 parent 2408233 commit 6368aa9
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
25.02rc1
25.02rc2
11 changes: 9 additions & 2 deletions 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/).

## [25.02rc1] - 2025-02-24:
## [25.02rc2] - 2025-02-26:

### Added

Expand Down Expand Up @@ -63,6 +63,8 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
- gossmap: Don't crash on ZFS while reading `gossip_store`. ([#8053])
- lightningd: Tell plugins our bolt12 features (so our bolt12 invoices explicitly allow MPP). ([#8059])
- lightningd: Allow more time for plugin startup so slow nodes don't time out on startup. ([#8060])
- `xpay`: Corrected the CLTV values in blinded paths which sometimes caused spurious failures. ([#8121])
- Protocol: We now renegotiate an interrupted close, even if we don't need it, instead of sending an error. ([#8116])
- bcli: `getblockfrompeer` no longer requests the block from the first peer only. ([#8069])
- lightning-cli: Fixed "malformed response" bug. ([#7924])
- lightning-cli: Fixed access to man pages from the installed directory. ([#8077])
Expand All @@ -80,7 +82,12 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.

### EXPERIMENTAL

- onchaind: Correctly collect our own (delayed) funds if we have a unilateral close when we are still offering a lease. ([#8111])


[#8111]: https://github.com/ElementsProject/lightning/pull/8111
[#8121]: https://github.com/ElementsProject/lightning/pull/8121
[#8116]: https://github.com/ElementsProject/lightning/pull/8116
[#8024]: https://github.com/ElementsProject/lightning/pull/8024
[#7969]: https://github.com/ElementsProject/lightning/pull/7969
[#7921]: https://github.com/ElementsProject/lightning/pull/7921
Expand Down Expand Up @@ -122,7 +129,7 @@ Note: You should always set `allow-deprecated-apis=false` to test for changes.
[#7942]: https://github.com/ElementsProject/lightning/pull/7942
[#7772]: https://github.com/ElementsProject/lightning/pull/7772
[#8060]: https://github.com/ElementsProject/lightning/pull/8060
[25.02rc1]: https://github.com/ElementsProject/lightning/releases/tag/v25.02rc1
[25.02rc2]: https://github.com/ElementsProject/lightning/releases/tag/v25.02rc2


## [24.11.1] - 2024-12-16: "The lightning-dev Mailing List II"
Expand Down
2 changes: 1 addition & 1 deletion contrib/msggen/msggen/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15376,7 +15376,7 @@
"port": 19735
}
],
"version": "v25.02rc1",
"version": "v25.02rc2",
"blockheight": 110,
"network": "regtest",
"fees_collected_msat": 0,
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 @@ -4,7 +4,7 @@
from .gossmapstats import GossmapStats
from .version import NodeVersion, VersionSpec

__version__ = "25.02rc1"
__version__ = "25.02rc2"

__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 = "25.02rc1"
version = "25.02rc2"
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__ = "25.02rc1"
__version__ = "25.02rc2"

__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 = "25.02rc1"
version = "25.02rc2"
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__ = "25.02rc1"
__version__ = "25.02rc2"

__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 = "25.02rc1"
version = "25.02rc2"
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 doc/schemas/lightning-getinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
"port": 19735
}
],
"version": "v25.02rc1",
"version": "v25.02rc2",
"blockheight": 110,
"network": "regtest",
"fees_collected_msat": 0,
Expand Down
2 changes: 1 addition & 1 deletion plugins/wss-proxy/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wss-proxy"
version = "25.02rc1"
version = "25.02rc2"
description = "Web secure socket proxy"
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 6368aa9

Please sign in to comment.