diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a08c37c..fdec35a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 1.4.0 +------------- +*You will lose stored passwords during the upgrade to this version* + * Added a prefix in redis in front of the storage keys, making the redis safer to share with other applications + * Small test and syntax improvements + Version 1.3.0 ------------- * Quote urls to fix bug with ending in '=' diff --git a/setup.cfg b/setup.cfg index bac52db..bb96d31 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0 +current_version = 1.4.0 commit = True tag = True files = setup.py snappass/__init__.py diff --git a/setup.py b/setup.py index 139e23b..3d040d1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='snappass', - version='1.3.0', + version='1.4.0', description="It's like SnapChat... for Passwords.", long_description=(open('README.rst').read() + '\n\n' + open('AUTHORS.rst').read()), diff --git a/snappass/__init__.py b/snappass/__init__.py index c062493..b5db515 100644 --- a/snappass/__init__.py +++ b/snappass/__init__.py @@ -1,2 +1,2 @@ __author__ = 'davedash' -__version__ = '1.3.0' +__version__ = '1.4.0'