Prepare the 1.5.0 release (#127)

This commit is contained in:
Jon Parise 2020-09-15 09:22:49 -07:00 committed by GitHub
parent 5c9d3bf3cf
commit feab2f69a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 5 deletions

View file

@ -1,7 +1,10 @@
Version 1.5.0 (in development) Version 1.5.0
------------------------------ -------------
* Added support for "2 week" secret lifetimes.
* The ``NO_SSL`` environment variable is now propertly parsed.
* The ``URL_PREFIX`` environment variable can be used to add a prefix to URLs, * The ``URL_PREFIX`` environment variable can be used to add a prefix to URLs,
which is useful when running behind a reverse proxy like nginx. which is useful when running behind a reverse proxy like nginx.
* Prevent prefetching bots from destroying secrets.
* Replaced mockredis with fakeredis in the unit test environment. * Replaced mockredis with fakeredis in the unit test environment.
* Added support for Python 3.8. * Added support for Python 3.8.

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 1.4.3 current_version = 1.5.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.5.0.dev0', version='1.5.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 +1 @@
__version__ = '1.4.2' __version__ = '1.5.0'