release: update version for 25.05rc1

Changelog-None
This commit is contained in:
Alex Myers
2025-05-16 13:03:20 -05:00
committed by Alex Myers
parent f68feaeb37
commit 8d6ae149ff
19 changed files with 49 additions and 57 deletions

View File

@@ -1 +1 @@
25.02
25.05rc1

View File

@@ -6597,7 +6597,7 @@
"netaddr": [
"127.0.0.1:19736"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
}
]
}
@@ -6830,7 +6830,7 @@
},
"response": {
"id": "nodeid020202020202020202020202020202020202020202020202020202020202",
"features": "08a0882a8a59a1",
"features": "08a8882a8a59a1",
"direction": "out",
"address": {
"type": "ipv4",
@@ -6851,7 +6851,7 @@
},
"response": {
"id": "nodeid030303030303030303030303030303030303030303030303030303030303",
"features": "08a0882a8a59a1",
"features": "08a8882a8a59a1",
"direction": "out",
"address": {
"type": "ipv4",
@@ -7974,7 +7974,7 @@
"response": {
"datastoreusage": {
"key": "[]",
"total_bytes": 161
"total_bytes": 2909
}
}
},
@@ -15384,14 +15384,14 @@
"port": 19735
}
],
"version": "v25.02",
"version": "v25.05rc1",
"blockheight": 110,
"network": "regtest",
"fees_collected_msat": 0,
"lightning-dir": "/tmp/.lightning/regtest",
"our_features": {
"init": "08a0882a8a59a1",
"node": "88a0882a8a59a1",
"init": "08a8882a8a59a1",
"node": "88a8882a8a59a1",
"channel": "",
"invoice": "02000002024100"
}
@@ -20167,10 +20167,6 @@
"set": true,
"source": "cmdline"
},
"experimental-peer-storage": {
"set": false,
"source": "default"
},
"experimental-quiesce": {
"set": false,
"source": "default"
@@ -21716,7 +21712,7 @@
"updated_index": 18,
"short_channel_id": "109x1x1",
"id": 1,
"expiry": 136,
"expiry": 135,
"direction": "out",
"amount_msat": 10001,
"payment_hash": "paymenthashinvl0310031003100310031003100310031003100310031003100",
@@ -22625,7 +22621,7 @@
"alias": "HOPPINGFIRE",
"color": "035d2b",
"last_timestamp": 1738000000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
}
]
@@ -22644,7 +22640,7 @@
"alias": "SILENTARTIST",
"color": "022d22",
"last_timestamp": 1738000000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
},
{
@@ -22652,7 +22648,7 @@
"alias": "JUNIORBEAM",
"color": "0266e4",
"last_timestamp": 1738010000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
},
{
@@ -22660,7 +22656,7 @@
"alias": "HOPPINGFIRE",
"color": "035d2b",
"last_timestamp": 1738020000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
},
{
@@ -22668,7 +22664,7 @@
"alias": "JUNIORFELONY",
"color": "0382ce",
"last_timestamp": 1738030000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
}
]
@@ -25345,7 +25341,7 @@
"netaddr": [
"127.0.0.1:19736"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
}
]
}
@@ -25365,7 +25361,7 @@
"netaddr": [
"127.0.0.1:19734"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
},
{
"id": "nodeid030303030303030303030303030303030303030303030303030303030303",
@@ -25374,13 +25370,13 @@
"netaddr": [
"127.0.0.1:19736"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
},
{
"id": "nodeid040404040404040404040404040404040404040404040404040404040404",
"connected": false,
"num_channels": 1,
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
}
]
}

View File

@@ -4,7 +4,7 @@ from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, G
from .gossmapstats import GossmapStats
from .version import NodeVersion
__version__ = "25.02"
__version__ = "25.05rc1"
__all__ = [
"LightningRpc",

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-client"
version = "25.02"
version = "25.05rc1"
description = "Client library and plugin library for Core Lightning"
authors = ["Christian Decker <decker.christian@gmail.com>"]
license = "BSD-MIT"

View File

@@ -4,7 +4,7 @@ from .invoice import Invoice
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
from .wire import LightningConnection, LightningServerSocket
__version__ = "25.02"
__version__ = "25.05rc1"
__all__ = [
"Invoice",

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-proto"
version = "25.02"
version = "25.05rc1"
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"

View File

@@ -1,4 +1,4 @@
__version__ = "25.02"
__version__ = "25.05rc1"
__all__ = [
"__version__",

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-testing"
version = "25.02"
version = "25.05rc1"
description = "Test your Core Lightning integration, plugins or whatever you want"
authors = ["Christian Decker <decker.christian@gmail.com>"]
license = "BSD-MIT"

View File

@@ -124,7 +124,7 @@
"netaddr": [
"127.0.0.1:19736"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
}
]
}

View File

@@ -199,7 +199,7 @@
},
"response": {
"id": "nodeid020202020202020202020202020202020202020202020202020202020202",
"features": "08a0882a8a59a1",
"features": "08a8882a8a59a1",
"direction": "out",
"address": {
"type": "ipv4",
@@ -220,7 +220,7 @@
},
"response": {
"id": "nodeid030303030303030303030303030303030303030303030303030303030303",
"features": "08a0882a8a59a1",
"features": "08a8882a8a59a1",
"direction": "out",
"address": {
"type": "ipv4",

View File

@@ -84,7 +84,7 @@
"response": {
"datastoreusage": {
"key": "[]",
"total_bytes": 161
"total_bytes": 2909
}
}
},

View File

@@ -410,14 +410,14 @@
"port": 19735
}
],
"version": "v25.02",
"version": "v25.05rc1",
"blockheight": 110,
"network": "regtest",
"fees_collected_msat": 0,
"lightning-dir": "/tmp/.lightning/regtest",
"our_features": {
"init": "08a0882a8a59a1",
"node": "88a0882a8a59a1",
"init": "08a8882a8a59a1",
"node": "88a8882a8a59a1",
"channel": "",
"invoice": "02000002024100"
}

View File

@@ -1941,10 +1941,6 @@
"set": true,
"source": "cmdline"
},
"experimental-peer-storage": {
"set": false,
"source": "default"
},
"experimental-quiesce": {
"set": false,
"source": "default"

View File

@@ -192,7 +192,7 @@
"updated_index": 18,
"short_channel_id": "109x1x1",
"id": 1,
"expiry": 136,
"expiry": 135,
"direction": "out",
"amount_msat": 10001,
"payment_hash": "paymenthashinvl0310031003100310031003100310031003100310031003100",

View File

@@ -280,7 +280,7 @@
"alias": "HOPPINGFIRE",
"color": "035d2b",
"last_timestamp": 1738000000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
}
]
@@ -299,7 +299,7 @@
"alias": "SILENTARTIST",
"color": "022d22",
"last_timestamp": 1738000000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
},
{
@@ -307,7 +307,7 @@
"alias": "JUNIORBEAM",
"color": "0266e4",
"last_timestamp": 1738010000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
},
{
@@ -315,7 +315,7 @@
"alias": "HOPPINGFIRE",
"color": "035d2b",
"last_timestamp": 1738020000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
},
{
@@ -323,7 +323,7 @@
"alias": "JUNIORFELONY",
"color": "0382ce",
"last_timestamp": 1738030000,
"features": "88a0882a8a59a1",
"features": "88a8882a8a59a1",
"addresses": []
}
]

View File

@@ -342,7 +342,7 @@
"netaddr": [
"127.0.0.1:19736"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
}
]
}
@@ -362,7 +362,7 @@
"netaddr": [
"127.0.0.1:19734"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
},
{
"id": "nodeid030303030303030303030303030303030303030303030303030303030303",
@@ -371,13 +371,13 @@
"netaddr": [
"127.0.0.1:19736"
],
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
},
{
"id": "nodeid040404040404040404040404040404040404040404040404040404040404",
"connected": false,
"num_channels": 1,
"features": "08a0882a8a59a1"
"features": "08a8882a8a59a1"
}
]
}

View File

@@ -1,12 +1,12 @@
[tool.poetry]
name = "wss-proxy"
version = "25.02"
version = "25.05rc1"
description = "Web secure socket proxy"
authors = ["ShahanaFarooqui <sfarooqui@blockstream.com>"]
[tool.poetry.dependencies]
python = "^3.8"
pyln-client = ">=24.11 <25.05"
pyln-client = ">=24.11 <25.09"
websockets = "^12.0"

10
poetry.lock generated
View File

@@ -1550,7 +1550,7 @@ files = [
[[package]]
name = "pyln-client"
version = "25.02"
version = "25.05rc1"
description = "Client library and plugin library for Core Lightning"
optional = false
python-versions = "^3.8"
@@ -1586,7 +1586,7 @@ url = "contrib/pyln-grpc-proto"
[[package]]
name = "pyln-proto"
version = "25.02"
version = "25.05rc1"
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!)."
optional = false
python-versions = "^3.8"
@@ -1607,7 +1607,7 @@ url = "contrib/pyln-proto"
[[package]]
name = "pyln-testing"
version = "25.02"
version = "25.05rc1"
description = "Test your Core Lightning integration, plugins or whatever you want"
optional = false
python-versions = "^3.8"
@@ -2205,7 +2205,7 @@ h11 = ">=0.9.0,<1"
[[package]]
name = "wss-proxy"
version = "25.02"
version = "25.05rc1"
description = "Web secure socket proxy"
optional = false
python-versions = "^3.8"
@@ -2214,7 +2214,7 @@ files = []
develop = true
[package.dependencies]
pyln-client = ">=24.11 <25.05"
pyln-client = ">=24.11 <25.09"
websockets = "^12.0"
[package.source]

View File

@@ -21,7 +21,7 @@ from urllib.error import HTTPError
import venv
__VERSION__ = '25.02rc1'
__VERSION__ = '25.05rc1'
logging.basicConfig(
level=logging.INFO,