Files
lightning/contrib/pyln-client/pyln/client/__init__.py
Rusty Russell 2109f0b0ea 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>
2023-07-10 18:22:43 +02:00

24 lines
575 B
Python

from .lightning import LightningRpc, RpcError, Millisatoshi
from .plugin import Plugin, monkey_patch, RpcException
from .gossmap import Gossmap, GossmapNode, GossmapChannel, GossmapHalfchannel, GossmapNodeId, LnFeatureBits
from .gossmapstats import GossmapStats
__version__ = "23.05.2"
__all__ = [
"LightningRpc",
"Plugin",
"RpcError",
"RpcException",
"Millisatoshi",
"__version__",
"monkey_patch",
"Gossmap",
"GossmapNode",
"GossmapChannel",
"GossmapHalfchannel",
"GossmapNodeId",
"LnFeatureBits",
"GossmapStats",
]