pyln: Bump versions

This commit is contained in:
Christian Decker 2022-11-10 17:05:20 +01:00
parent 5a08691ffc
commit d4ead53652
6 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@ from .lightning import LightningRpc, RpcError, Millisatoshi
from .plugin import Plugin, monkey_patch, RpcException
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapNodeId
__version__ = "0.12.1"
__version__ = "22.11rc1"
__all__ = [
"LightningRpc",

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-client"
version = "0.12.1"
version = "22.11rc1"
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__ = "0.12.0"
__version__ = "22.11rc1"
__all__ = [
"Invoice",

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "pyln-proto"
version = "0.12.1"
version = "22.11rc1"
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__ = "0.12.1"
__version__ = "22.11rc1"
__all__ = [
"__version__",

View File

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