Bump to Version 1.5.1 (#148)
This commit is contained in:
parent
3fbc018ff8
commit
9e33a8f7c1
4 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
Version 1.5.1
|
||||
-------------
|
||||
* The ``HOST_OVERRIDE`` environment variable can be used to override the base URL. Useful when behind a reverseproxy.
|
||||
* Upgrade to Jinja 2.11.3
|
||||
* Upgrade to cryptography 3.3.2
|
||||
* Returning json if request-mimetype is "application/json"
|
||||
* Return template if password is expired (instead of 404)
|
||||
|
||||
Version 1.5.0
|
||||
-------------
|
||||
* Added support for "2 week" secret lifetimes.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 1.5.0
|
||||
current_version = 1.5.1
|
||||
commit = True
|
||||
tag = True
|
||||
files = setup.py snappass/__init__.py
|
||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='snappass',
|
||||
version='1.5.0',
|
||||
version='1.5.1',
|
||||
description="It's like SnapChat... for Passwords.",
|
||||
long_description=(open('README.rst').read() + '\n\n' +
|
||||
open('AUTHORS.rst').read()),
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = '1.5.0'
|
||||
__version__ = '1.5.1'
|
||||
|
|
Loading…
Reference in a new issue