Merge pull request #88 from pinterest/new-release-140

New release 140
This commit is contained in:
Nicholas Charriere 2018-07-03 08:38:07 -07:00 committed by GitHub
commit 798f358ed6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 3 deletions

View file

@ -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 '='

View file

@ -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

View file

@ -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()),

View file

@ -1,2 +1,2 @@
__author__ = 'davedash' __author__ = 'davedash'
__version__ = '1.3.0' __version__ = '1.4.0'