From 25c716a9e639b9352d909b5c10ad66cda3cb75cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Lizo=C5=84czyk?= Date: Mon, 16 Jul 2018 01:52:50 +0200 Subject: [PATCH] Update changelog, package version, requirements --- CHANGELOG.rst | 8 ++++++++ docs/conf.py | 4 ++-- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5022499..52f96ad 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +.. _v0-3-0: + +0.3.0 - TODO +~~~~~~~~~~~~~~~~~~ + +* Added support for non-default crypto backends +* Loosened restriction on Cryptography version in requirements.txt and bumped version to 2.2.2 + .. _v0-2-2: 0.2.2 - 2018-03-21 diff --git a/docs/conf.py b/docs/conf.py index bfc8e94..996cf2a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ author = 'Piotr Lizonczyk' # built documents. # # The short X.Y version. -version = '0.2' +version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.2.0' +release = '0.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/requirements.txt b/requirements.txt index 20fa3b5..e3a87f5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -cryptography==2.1.4 +cryptography>=2.2.2 diff --git a/setup.py b/setup.py index 0187754..34fd012 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ except (IOError, ImportError): setup( name='noiseprotocol', - version='0.2.2', + version='0.3.0', description='Implementation of Noise Protocol Framework', long_description=long_description, url='https://github.com/plizonczyk/noiseprotocol',