Skip to content

Commit feab2f6

Browse files
authored
Prepare the 1.5.0 release (#127)
1 parent 5c9d3bf commit feab2f6

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
Version 1.5.0 (in development)
2-
------------------------------
1+
Version 1.5.0
2+
-------------
3+
* Added support for "2 week" secret lifetimes.
4+
* The ``NO_SSL`` environment variable is now propertly parsed.
35
* The ``URL_PREFIX`` environment variable can be used to add a prefix to URLs,
46
which is useful when running behind a reverse proxy like nginx.
7+
* Prevent prefetching bots from destroying secrets.
58
* Replaced mockredis with fakeredis in the unit test environment.
69
* Added support for Python 3.8.
710

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.3
2+
current_version = 1.5.0
33
commit = True
44
tag = True
55
files = setup.py snappass/__init__.py

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='snappass',
5-
version='1.5.0.dev0',
5+
version='1.5.0',
66
description="It's like SnapChat... for Passwords.",
77
long_description=(open('README.rst').read() + '\n\n' +
88
open('AUTHORS.rst').read()),

snappass/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.4.2'
1+
__version__ = '1.5.0'

0 commit comments

Comments
 (0)