pyln-client: make point release to prepare for next release.

People running master notice that calling listconfigs fails, because
we don't handle objects called xxx_msat correctly (see
d348554ff4).  This makes it painful
to test, until we release a pyln-client version.

Fortunately, the three changes in master are all fully backwards compatible,
so we can simply cut a release now and upload to pipy.org.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2023-07-10 13:53:22 +09:30 committed by Christian Decker
parent cd25bd4b13
commit 2109f0b0ea
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ from .plugin import Plugin, monkey_patch, RpcException
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
from .gossmapstats import GossmapStats
__version__ = "23.05"
__version__ = "23.05.2"
__all__ = [
"LightningRpc",

View File

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