From 9e33a8f7c132ee3702666968b1880f01359ea998 Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 11 May 2022 23:43:23 +0200 Subject: [PATCH] Bump to Version 1.5.1 (#148) --- CHANGELOG.rst | 8 ++++++++ setup.cfg | 2 +- setup.py | 2 +- snappass/__init__.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) 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'