From 28d9e1e0891363ed927135b8430b2b160540eab5 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Fri, 9 Aug 2019 14:40:07 -0700 Subject: [PATCH] Move to version 1.5.0 (in development) Also start the changelog for this next release. --- CHANGELOG.rst | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1e6ef31..fc7f1dd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 1.5.0 (in development) +------------------------------ +* 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. +* Replaced mockredis with fakeredis in the unit test environment. + Version 1.4.2 ------------- * Various minor README and documentation improvements diff --git a/setup.py b/setup.py index 0ccc593..a58f597 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='snappass', - version='1.4.2', + version='1.5.0.dev0', description="It's like SnapChat... for Passwords.", long_description=(open('README.rst').read() + '\n\n' + open('AUTHORS.rst').read()),