Skip to content

Commit 74221c0

Browse files
committed
Complete Changelog and bump version to 1.15.0
1 parent 2efeaa2 commit 74221c0

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

.bumpversion.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.14.0
2+
current_version = 1.15.0
33
commit = True
44
tag = True
55
tag_name = {new_version}

CHANGELOG.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
11
# Changelog
22

3-
## Unreleased
3+
## 1.15.0
44

55
### Added
6-
- Enforcing a redirect to setup of otp device when none available for user [#550](https://github.com/jazzband/django-two-factor-auth/pull/500)
6+
- Enforcing a redirect to setup of otp device when none available for user (#499)
77
- Confirmed Django 4.1 support
8-
- WebAuthn support
8+
- WebAuthn support (thanks to Javier Paniagua)
99
- Confirmed Python 3.11 support
1010

11-
### Removed
12-
- Django 2.2, 3.0, and 3.1 support
13-
1411
### Changed
1512

16-
- display the TOTP secret key alongside the QR code to streamline setup for
17-
password managers without QR support.
13+
- Display the TOTP secret key alongside the QR code to streamline setup for
14+
password managers without QR support.
15+
- Moved phonenumber migrations under the plugins directory.
16+
- Avoid crash with email devices without email (#530).
17+
18+
### Removed
19+
- Django 2.2, 3.0, and 3.1 support
20+
- `two_factor.utils.get_available_methods()` is replaced by
21+
`MethodRegistry.get_methods()`.
1822

1923
## 1.14.0
2024

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
#
6060

6161
# The full version, including alpha/beta/rc tags.
62-
release = '1.14.0'
62+
release = '1.15.0'
6363

6464
# The short X.Y version.
6565
version = '.'.join(release.split('.')[0:2])

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='django-two-factor-auth',
5-
version='1.14.0',
5+
version='1.15.0',
66
description='Complete Two-Factor Authentication for Django',
77
long_description=open('README.rst', encoding='utf-8').read(),
88
author='Bouke Haarsma',

0 commit comments

Comments
 (0)