diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c91c5d839..18bda38cd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,4 +1,4 @@ [bumpversion] -current_version = 1.3.0 +current_version = 1.3.1 files = setup.py docs/conf.py diff --git a/docs/conf.py b/docs/conf.py index 97c43b1cc..c7309d32c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ # # The full version, including alpha/beta/rc tags. -release = '1.3.0' +release = '1.3.1' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/docs/release-notes.rst b/docs/release-notes.rst index c495bd09f..25cc9efb7 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -1,8 +1,8 @@ Release Notes ============= -Development ------------ +1.3.1 +----- * Fix: KeyError when trying to login (#102) * Fix: Migration fails with custom user model without username field * Fix: Added missing migrations diff --git a/setup.py b/setup.py index b616b9d18..dcb940e2f 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-two-factor-auth', - version='1.3.0', + version='1.3.1', description='Complete Two-Factor Authentication for Django', long_description=open('README.rst').read(), author='Bouke Haarsma',