From 48cee3c3d2fc31c973b54d3187504deef388d6c3 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Fri, 12 Jun 2020 17:15:04 +0200 Subject: [PATCH] pyln: Bump version to 0.8.2 in order to match with binary distro Keeping them out of sync seems like a great way to create confusion. Let's sync them up whenever possible. --- contrib/pyln-proto/pyln/proto/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pyln-proto/pyln/proto/__init__.py b/contrib/pyln-proto/pyln/proto/__init__.py index 94770f84c..c6777043e 100644 --- a/contrib/pyln-proto/pyln/proto/__init__.py +++ b/contrib/pyln-proto/pyln/proto/__init__.py @@ -2,7 +2,7 @@ from .invoice import Invoice from .onion import OnionPayload, TlvPayload, LegacyOnionPayload from .wire import LightningConnection, LightningServerSocket -__version__ = '0.0.2' +__version__ = '0.8.2' __all__ = [ "Invoice",