Merge pull request #81 from pinterest/bumpversion-1.3.0
Bump version to 1.3.0
This commit is contained in:
commit
6fe4733baa
4 changed files with 9 additions and 5 deletions
|
@ -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
|
Version 1.2.0
|
||||||
-------------
|
-------------
|
||||||
* Added Fernet cryptography to the stored keys, prevent access to full text passwords if someone has access to Redis
|
* Added Fernet cryptography to the stored keys, prevent access to full text passwords if someone has access to Redis
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 1.2.0
|
current_version = 1.3.0
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
files = setup.py snappass/__init__.py
|
files = setup.py snappass/__init__.py
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='snappass',
|
name='snappass',
|
||||||
version='1.2.0',
|
version='1.3.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()),
|
||||||
|
@ -26,10 +26,8 @@ setup(
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
'Programming Language :: Python :: 2.6',
|
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.3',
|
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
__author__ = 'davedash'
|
__author__ = 'davedash'
|
||||||
__version__ = '1.2.0'
|
__version__ = '1.3.0'
|
||||||
|
|
Loading…
Reference in a new issue