From e210dc1c28a53399c5895a086bc18c10ca350832 Mon Sep 17 00:00:00 2001 From: Joshua Blum Date: Tue, 8 Mar 2022 21:18:16 -0500 Subject: [PATCH] prep for 2.10 release (#422) --- CHANGELOG | 13 +++++++++++-- docs/conf.py | 4 ++-- registration/__init__.py | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 207d64c..e7a9b3a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,8 +2,17 @@ django-registration-redux changelog =================================== -Version 2.10, TBD ----------------- +## Version 2.11, TBD + +## Version 2.10, 8 March, 2022 + +* BACKWARDS-INCOMPATIBLE CHANGE: Remove support for Django < 3.1 and Python +3.5 +* Bugfix: Update Polish translations. +`#417 _` +`#418 _` +* Bugfix: Set default_auto_field on RegistrationProfile +`#414 _` * Feature: Django 3.2 support. `#412 _` * Feature: Django 4.0 support. diff --git a/docs/conf.py b/docs/conf.py index 8f7253e..5432d17 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -44,9 +44,9 @@ # built documents. # # The short X.Y version. -version = '2.9' +version = '2.10' # The full version, including alpha/beta/rc tags. -release = '2.9' +release = '2.10' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/registration/__init__.py b/registration/__init__.py index abf67c6..3da9feb 100644 --- a/registration/__init__.py +++ b/registration/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 9, 0, 'final', 0) +VERSION = (2, 10, 0, 'final', 0) def get_version():