diff --git a/CHANGELOG.rst b/CHANGELOG.rst index be70110..a191120 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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. diff --git a/setup.cfg b/setup.cfg index 75d5b41..711b395 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/setup.py b/setup.py index ed75211..6492bb1 100644 --- a/setup.py +++ b/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()), diff --git a/snappass/__init__.py b/snappass/__init__.py index 77f1c8e..51ed7c4 100644 --- a/snappass/__init__.py +++ b/snappass/__init__.py @@ -1 +1 @@ -__version__ = '1.5.0' +__version__ = '1.5.1'