mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
pyln: Bump proto version to match pyln-bolt*
Since pyln-bolt* specify the 0.8.4 version which we didn't upload, and the requirements.txt specify ==0.8.4, we need to backfill that version, even if we could just bump it directly to 0.9.1.
This commit is contained in:
parent
f62d7bbe45
commit
f5dd393113
@ -3,7 +3,7 @@ from .invoice import Invoice
|
||||
from .onion import OnionPayload, TlvPayload, LegacyOnionPayload
|
||||
from .wire import LightningConnection, LightningServerSocket
|
||||
|
||||
__version__ = '0.8.3'
|
||||
__version__ = '0.8.4'
|
||||
|
||||
__all__ = [
|
||||
"Invoice",
|
||||
|
@ -9,7 +9,7 @@ with io.open('requirements.txt', encoding='utf-8') as f:
|
||||
requirements = [r for r in f.read().split('\n') if len(r)]
|
||||
|
||||
setup(name='pyln-proto',
|
||||
version='0.8.3',
|
||||
version='0.8.4',
|
||||
description='Pure python implementation of the Lightning Network protocol',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
|
Loading…
Reference in New Issue
Block a user