From c3e2fdecfea14b74183054d290c1c21d86f4d413 Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Sun, 5 Jul 2020 15:27:15 +0200 Subject: [PATCH] Update to version 1.2.0 --- CHANGELOG.rst | 32 ++++++++++++++++++++++++++++++++ cas_server/__init__.py | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8c4666a..d493dd9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 =================== diff --git a/cas_server/__init__.py b/cas_server/__init__.py index 26a5bcd..66d4a2c 100644 --- a/cas_server/__init__.py +++ b/cas_server/__init__.py @@ -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'