From 278721ee23e4f8aa59772d5a8efbdeace3dd720b Mon Sep 17 00:00:00 2001 From: Bouke Haarsma Date: Wed, 8 Jul 2020 22:10:27 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.11.0=20=E2=86=92=201.12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 073209863..339a81a85 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,9 +1,9 @@ [bumpversion] -current_version = 1.11.0 +current_version = 1.12 commit = True tag = True tag_name = {new_version} -parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P.*))? +parse = (?P\d+)\.(?P\d+)(\.(?P\d+))?(\.(?P.*))? serialize = {major}.{minor}.{patch}.{release} {major}.{minor}.{patch} diff --git a/docs/conf.py b/docs/conf.py index 58c85e9a1..5a6a756a1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ # # The full version, including alpha/beta/rc tags. -release = '1.11' +release = '1.12' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/setup.py b/setup.py index 115969789..2deb3fa00 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-two-factor-auth', - version='1.11', + version='1.12', description='Complete Two-Factor Authentication for Django', long_description=open('README.rst', encoding='utf-8').read(), author='Bouke Haarsma',