Skip to content

Commit

Permalink
prep for 2.12 release (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshblum committed Feb 6, 2023
1 parent c185485 commit ac198a1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG
Expand Up @@ -2,7 +2,19 @@
django-registration-redux changelog
===================================

## Version 2.12, TBD
## Version 2.13, TBD

## Version 2.12, 5 February, 2023

* BACKWARDS-INCOMPATIBLE CHANGE: Remove support for Python 3.6
* Bugfix: Show registration email on registation complete page
`#427 <https://github.com/macropin/django-registration/pull/427>_`
* Bugfix: Update French compiled messages
`#429 <https://github.com/macropin/django-registration/pull/429>_`
* Feature: Test against Django 4.1 and Python 3.11
`#432 <https://github.com/macropin/django-registration/pull/432>_`
* Bugfix: Add default_app_config (for Django 3.1 and prior)
`#430 <https://github.com/macropin/django-registration/pull/430>_`

## Version 2.11, 21 June, 2022

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -44,9 +44,9 @@
# built documents.
#
# The short X.Y version.
version = '2.11'
version = '2.12'
# The full version, including alpha/beta/rc tags.
release = '2.11'
release = '2.12'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion registration/__init__.py
@@ -1,4 +1,4 @@
VERSION = (2, 11, 0, 'final', 0)
VERSION = (2, 12, 0, 'final', 0)

# for Django-3.1 and prior
default_app_config = 'registration.apps.RegistrationConfig'
Expand Down

0 comments on commit ac198a1

Please sign in to comment.