release candidate PR for 25.12 with Shahana's Makefile update
Changelog-None
This commit is contained in:
@@ -4,7 +4,7 @@ from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, G
|
|||||||
from .gossmapstats import GossmapStats
|
from .gossmapstats import GossmapStats
|
||||||
from .version import NodeVersion
|
from .version import NodeVersion
|
||||||
|
|
||||||
__version__ = "25.12rc1"
|
__version__ = "v25.12rc1"
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"LightningRpc",
|
"LightningRpc",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "pyln-client"
|
name = "pyln-client"
|
||||||
version = "25.12rc1"
|
version = "v25.12rc1"
|
||||||
description = "Client library and plugin library for Core Lightning"
|
description = "Client library and plugin library for Core Lightning"
|
||||||
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
|
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
|
||||||
license = { text = "BSD-MIT" }
|
license = { text = "BSD-MIT" }
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from .invoice import Invoice
|
|||||||
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
|
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
|
||||||
from .wire import LightningConnection, LightningServerSocket
|
from .wire import LightningConnection, LightningServerSocket
|
||||||
|
|
||||||
__version__ = "25.12rc1"
|
__version__ = "v25.12rc1"
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Invoice",
|
"Invoice",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "pyln-proto"
|
name = "pyln-proto"
|
||||||
version = "25.12rc1"
|
version = "v25.12rc1"
|
||||||
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!)."
|
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 = [
|
authors = [
|
||||||
{name = "Christian Decker", email = "decker.christian@gmail.com"}
|
{name = "Christian Decker", email = "decker.christian@gmail.com"}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
__version__ = "25.12rc1"
|
__version__ = "v25.12rc1"
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"__version__",
|
"__version__",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "pyln-testing"
|
name = "pyln-testing"
|
||||||
version = "25.12rc1"
|
version = "v25.12rc1"
|
||||||
description = "Test your Core Lightning integration, plugins or whatever you want"
|
description = "Test your Core Lightning integration, plugins or whatever you want"
|
||||||
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
|
authors = [{ name = "Christian Decker", email = "decker.christian@gmail.com" }]
|
||||||
license = { text = "BSD-MIT" }
|
license = { text = "BSD-MIT" }
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ from urllib.error import HTTPError
|
|||||||
import venv
|
import venv
|
||||||
|
|
||||||
|
|
||||||
__VERSION__ = '25.12rc1'
|
__VERSION__ = 'v25.12rc1'
|
||||||
|
|
||||||
logging.basicConfig(
|
logging.basicConfig(
|
||||||
level=logging.INFO,
|
level=logging.INFO,
|
||||||
|
|||||||
Reference in New Issue
Block a user