Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 1.16.0 release #705

Merged
merged 1 commit into from
Feb 3, 2024
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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.15.5
current_version = 1.16.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 1.16.0
### Fixed
- Avoid potentially empty `<ul>` on the profile page.

### Changed
- Upgraded minimal webauthn dependency to 2.0 (which also removes a deprecation
warning) (#634, #701). Note the ``pydantic`` dependency was removed in
webauthn 2.
- Checking phone method availability uses now the method registry (#665).
- Logout example uses POST method to match recent Django behavior.
- Updated translations.

### Added
- Support confirmation for Django 5.0 and Python 3.12.
- A new `main_form_content` template block on login template allows for easier
overridability.

## 1.15.5
### Fixed
- Include transitively replaced migrations in phonenumber migration.
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.15.5'
release = '1.16.0'

# The short X.Y version.
version = '.'.join(release.split('.')[0:2])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='django-two-factor-auth',
version='1.15.5',
version='1.16.0',
description='Complete Two-Factor Authentication for Django',
long_description=open('README.rst', encoding='utf-8').read(),
author='Bouke Haarsma',
Expand Down
Loading