Prepare the 1.5.0 release (#127)
This commit is contained in:
parent
5c9d3bf3cf
commit
feab2f69a5
4 changed files with 8 additions and 5 deletions
|
@ -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.
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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()),
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = '1.4.2'
|
__version__ = '1.5.0'
|
||||||
|
|
Loading…
Reference in a new issue