Bump version to 1.3.0

This commit is contained in:
Nicholas Charriere 2018-05-07 09:23:51 -07:00
parent 68b4cec5e8
commit e45feb1cfd
4 changed files with 9 additions and 5 deletions

View file

@ -1,3 +1,9 @@
Version 1.3.0
-------------
* Quote urls to fix bug with ending in '='
* Mock redis
* Drop support for python 2.6 and python 3.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]
current_version = 1.2.0
current_version = 1.3.0
commit = True
tag = True
files = setup.py snappass/__init__.py

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='snappass',
version='1.2.0',
version='1.3.0',
description="It's like SnapChat... for Passwords.",
long_description=(open('README.rst').read() + '\n\n' +
open('AUTHORS.rst').read()),
@ -26,10 +26,8 @@ setup(
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',

View file

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