From 5b6bb7c571b22fcc52542d80b785d80516cd23ec Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Tue, 4 Dec 2018 21:59:08 +0100 Subject: [PATCH] pylightning: Bump version number to 0.0.6 to make Pypi work again Fixes #2135 Signed-off-by: Christian Decker --- CHANGELOG.md | 4 +++- contrib/pylightning/setup.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c64a22087..5574d44ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/contrib/pylightning/setup.py b/contrib/pylightning/setup.py index af902f150..acb166bba 100644 --- a/contrib/pylightning/setup.py +++ b/contrib/pylightning/setup.py @@ -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',