Update to version 2.1.0

v2.1.0 - 2024-08-18
===================

Added
-----

* Support for Django 4.2
* Allow forms to be overridden from settings

Deprecated
----------

* Make the crypt module optional and deprecate it's usage.
  The python stdlid crypt module is deprecated since version 3.11 and
  will be removed in version 3.13. Check for the availability of the
  crypt module.
  All password checks using the crypt module will stop to work on
  python 3.13.
This commit is contained in:
Valentin Samir 2024-08-18 13:11:46 +02:00
parent 30f2358db8
commit 194ebac8e8
2 changed files with 3 additions and 3 deletions

View file

@ -6,8 +6,8 @@ All notable changes to this project will be documented in this file.
.. contents:: Table of Contents
:depth: 2
Unreleased
==========
v2.1.0 - 2024-08-18
===================
Added
-----

View file

@ -15,7 +15,7 @@ except ModuleNotFoundError:
django = None
#: version of the application
VERSION = '2.0.0'
VERSION = '2.1.0'
if django is None or django.VERSION < (3, 2):
#: path the the application configuration class