Changelog and setup.py update

This commit is contained in:
Piotr Lizonczyk
2017-10-11 19:00:35 +02:00
parent 3bfb39883e
commit d636c506d3
2 changed files with 4 additions and 2 deletions

View File

@@ -9,6 +9,8 @@ Changelog
.. note:: This version is not yet released and is under active development.
* Cryptography requirement updated to the newest version (2.1) - **Python 3.5** is supported again.
* Adding sphinx documentation for Read the Docs publication.
* Minor fixes for better performance.
.. _v0-1-0:

View File

@@ -13,7 +13,7 @@ except (IOError, ImportError):
setup(
name='noiseprotocol',
version='0.1.1',
version='0.2.0',
description='Implementation of Noise Protocol Framework',
long_description=long_description,
url='https://github.com/plizonczyk/noiseprotocol',
@@ -32,6 +32,6 @@ setup(
],
keywords='cryptography noiseprotocol noise security',
packages=find_packages(exclude=['contrib', 'docs', 'tests', 'examples']),
install_requires=['cryptography==2.0.3'],
install_requires=['cryptography==2.1.0'],
python_requires='~=3.5,~=3.6',
)