diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..c44728d --- /dev/null +++ b/CHANGELOG.rst @@ -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 diff --git a/setup.cfg b/setup.cfg index e4c59eb..ccf9588 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.2.0 commit = True tag = True files = setup.py snappass/__init__.py diff --git a/setup.py b/setup.py index f9a8224..27ff94d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='snappass', - version='1.1.0', + version='1.2.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 3bc5757..64f92b9 100644 --- a/snappass/__init__.py +++ b/snappass/__init__.py @@ -1,2 +1,2 @@ __author__ = 'davedash' -__version__ = '1.1.0' +__version__ = '1.2.0'