From 19e02f5073842193150f58d189207a9e75185385 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Wed, 21 Jun 2023 18:12:00 +0200 Subject: [PATCH] Prepare 1.15.3 release Fixes #629. --- .bumpversion.cfg | 2 +- CHANGELOG.md | 7 ++++++- docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9760ae2eb..d8b31172c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.15.2 +current_version = 1.15.3 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index d4de1235b..8249f5281 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Changelog -## Unreleased +## 1.15.3 +### Added +- Added Turkish translation. + ### Fixed - Fixed a PhoneDevice migration generated even when the phonenumber plugin was not installed (#587). +- Created a custom phonenumber migration to allow migration for both when the + model already exists (legacy installs) and for new installs (#611). ## 1.15.2 ### Added diff --git a/docs/conf.py b/docs/conf.py index fb462245a..8f353903a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # # The full version, including alpha/beta/rc tags. -release = '1.15.2' +release = '1.15.3' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/setup.py b/setup.py index e24a85cce..f66d01105 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='django-two-factor-auth', - version='1.15.2', + version='1.15.3', description='Complete Two-Factor Authentication for Django', long_description=open('README.rst', encoding='utf-8').read(), author='Bouke Haarsma',