diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 60ae540..be70110 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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, 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. * Added support for Python 3.8. diff --git a/setup.cfg b/setup.cfg index c4f3543..75d5b41 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.3 +current_version = 1.5.0 commit = True tag = True files = setup.py snappass/__init__.py diff --git a/setup.py b/setup.py index a2fce68..ed75211 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='snappass', - version='1.5.0.dev0', + version='1.5.0', 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 98d186b..77f1c8e 100644 --- a/snappass/__init__.py +++ b/snappass/__init__.py @@ -1 +1 @@ -__version__ = '1.4.2' +__version__ = '1.5.0'