Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# Changelog

## Unreleased
## 1.17.0
### Fixed
- Fixed the XML syntax of the Twilio token.xml file.
- The Yubikey token field is now receiving autofocus.
- Avoid crashes for devices with no `throttle_*` methods (#699).
- Fixed format of the hash for the OTP device cookie key.

### Changed
- Allow django-phonenumber-field 8.x.x.
- Project build is now using a more modern toolbox based on `pyproject.toml` (no
more setup.*).
- The plugins method registry can now return a new `MethodNotFoundError`
exception when some method is not found in the plugins registry.

### Added
- Support confirmation for Django 5.1.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
#

# The full version, including alpha/beta/rc tags.
release = '1.16.0'
release = '1.17.0'

# The short X.Y version.
version = '.'.join(release.split('.')[0:2])
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "django-two-factor-auth"
version = "1.16.0"
version = "1.17.0"
description = "Complete Two-Factor Authentication for Django"
readme = "README.rst"
authors = [
Expand Down
Loading