commit
798f358ed6
4 changed files with 9 additions and 3 deletions
|
@ -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
|
Version 1.3.0
|
||||||
-------------
|
-------------
|
||||||
* Quote urls to fix bug with ending in '='
|
* Quote urls to fix bug with ending in '='
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 1.3.0
|
current_version = 1.4.0
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
files = setup.py snappass/__init__.py
|
files = setup.py snappass/__init__.py
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='snappass',
|
name='snappass',
|
||||||
version='1.3.0',
|
version='1.4.0',
|
||||||
description="It's like SnapChat... for Passwords.",
|
description="It's like SnapChat... for Passwords.",
|
||||||
long_description=(open('README.rst').read() + '\n\n' +
|
long_description=(open('README.rst').read() + '\n\n' +
|
||||||
open('AUTHORS.rst').read()),
|
open('AUTHORS.rst').read()),
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
__author__ = 'davedash'
|
__author__ = 'davedash'
|
||||||
__version__ = '1.3.0'
|
__version__ = '1.4.0'
|
||||||
|
|
Loading…
Reference in a new issue