pylightning: Bump version number to 0.0.6 to make Pypi work again

Fixes #2135

Signed-off-by: Christian Decker <decker.christian@gmail.com>
This commit is contained in:
Christian Decker
2018-12-04 21:59:08 +01:00
parent bd6e3bfe6a
commit 5b6bb7c571
2 changed files with 4 additions and 2 deletions

View File

@@ -18,13 +18,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- JSON API: `pay` and `decodepay` accept and ignore `lightning:` prefixes.
- pylightning: Allow either keyword arguments or positional arguments.
- JSON-RPC: messages are now separated by 2 consecutive newlines. The pylightning client library has temporary support for both separators, but will eventually drop the single newline separator, which may cause it to stop working on older clients (see #2135 for details).
- JSON-RPC: messages are now separated by 2 consecutive newlines.
### Deprecated
Note: You should always set `allow-deprecated-apis=false` to test for
changes.
- pylightning: Support for pre-2-newline JSON-RPC (<= 0.6.2 lightningd) is deprecated.
### Removed
### Fixed

View File

@@ -1,7 +1,7 @@
from setuptools import setup
setup(name='pylightning',
version='0.0.3',
version='0.0.6',
description='Client library for lightningd',
url='http://github.com/ElementsProject/lightning',
author='Christian Decker',