diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 291b8dd..1e6ef31 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,9 @@ +Version 1.4.2 +------------- + * Various minor README and documentation improvements + * Upgrade to Jinja 2.10.1 + * Fix autocomplete bug where hitting "back" would allow to autocomplete the password + Version 1.4.1 ------------- * Switch to local (non-CDN) Font Awesome assets diff --git a/setup.cfg b/setup.cfg index ca21be4..561dba0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.0 +current_version = 1.4.2 commit = True tag = True files = setup.py snappass/__init__.py @@ -8,5 +8,3 @@ files = setup.py snappass/__init__.py show-source = True max-line-length = 120 -[bumpversion:file:snappass/__init__.py] - diff --git a/setup.py b/setup.py index 1bd4f7f..0ccc593 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='snappass', - version='1.5.0', + version='1.4.2', 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..98d186b 100644 --- a/snappass/__init__.py +++ b/snappass/__init__.py @@ -1 +1 @@ -__version__ = '1.5.0' +__version__ = '1.4.2'