Merge pull request #66 from pinterest/v120

v1.2.0
This commit is contained in:
Nicholas Charriere 2017-05-25 14:24:08 -07:00 committed by GitHub
commit 71529bcf99
4 changed files with 6 additions and 3 deletions

3
CHANGELOG.rst Normal file
View file

@ -0,0 +1,3 @@
Version 1.2.0
-------------
* Added Fernet cryptography to the stored keys, prevent access to full text passwords if someone has access to Redis

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 1.1.0 current_version = 1.2.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.1.0', version='1.2.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.1.0' __version__ = '1.2.0'