diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c44728d..a08c37c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 1.3.0 +------------- +* Quote urls to fix bug with ending in '=' +* Mock redis +* Drop support for python 2.6 and python 3.3 + Version 1.2.0 ------------- * Added Fernet cryptography to the stored keys, prevent access to full text passwords if someone has access to Redis diff --git a/setup.cfg b/setup.cfg index ccf9588..bac52db 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.3.0 commit = True tag = True files = setup.py snappass/__init__.py diff --git a/setup.py b/setup.py index 27ff94d..139e23b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='snappass', - version='1.2.0', + version='1.3.0', description="It's like SnapChat... for Passwords.", long_description=(open('README.rst').read() + '\n\n' + open('AUTHORS.rst').read()), @@ -26,10 +26,8 @@ setup( 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', diff --git a/snappass/__init__.py b/snappass/__init__.py index 64f92b9..c062493 100644 --- a/snappass/__init__.py +++ b/snappass/__init__.py @@ -1,2 +1,2 @@ __author__ = 'davedash' -__version__ = '1.2.0' +__version__ = '1.3.0'