Update to version 1.2.0

This commit is contained in:
Valentin Samir 2020-07-05 15:27:15 +02:00
parent 85a022686b
commit c3e2fdecfe
2 changed files with 33 additions and 1 deletions

View File

@ -6,6 +6,38 @@ All notable changes to this project will be documented in this file.
.. contents:: Table of Contents
:depth: 2
v1.2.0 - 2020-07-05
===================
Added
-----
* Bootstrap 4 templates
* Support for Django 2.2 and 3.0
Fixes
-----
* Replace calls to add_description_unit. As of Sphinx 2.4, the deprecated
add_description_unit function has been removed.
* Fix CRYPT-DES hash method for LDAP
* Fix various spelling miskate in README.rst
* Service URL: keep blank GET arguments
Changed
-------
* Use python3 for flake8, check_rst and coverage
* Update README.rst quickstart for using python3 by default
Removed
-------
* Drop support for Django 2.0 and 2.1 as it reached end of life.
We still keep Django 1.11 as it is the last supported release
by python2 AND the currently packaged version of Django in
Debian Buster (current stable).
v1.1.0 - 2019-03-02
===================

View File

@ -11,7 +11,7 @@
"""A django CAS server application"""
#: version of the application
VERSION = '1.1.0'
VERSION = '1.2.0'
#: path the the application configuration class
default_app_config = 'cas_server.apps.CasAppConfig'