diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d493dd9..315506f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,34 @@ All notable changes to this project will be documented in this file. .. contents:: Table of Contents :depth: 2 +v1.3.0 - 2021-06-19 +=================== + +Added +----- + +* Support for Dango 3.1 and 3.2 +* Implement CAS_LDAP_ATTRS_VIEW set to 0: then using ldap bind mode, user + attributes can be retreive either using CAS_LDAP_USER or using the + binded user credentials. +* Added ppc64le architecture support on travis-ci (django-cas-server is + included in the ppc64le versions of RHEL and Ubuntu) +* Python 3.9 support + +Fixes +----- + +* Allow to use user attributes if auth by ldap bind +* Fix spelling mistakes in french translation +* Fix bug model datefield Form (Federated User Admin) +* django.conf.urls is deprecated and will be removed in Django 4.0. + Use django.urls.re_path instead + +Removed +------- + +* Drop support for Django 3.0 as it reached end of life. + v1.2.0 - 2020-07-05 =================== diff --git a/README.rst b/README.rst index 887ee3c..50bc8c7 100644 --- a/README.rst +++ b/README.rst @@ -644,8 +644,8 @@ You could for example do as below:: -.. |travis| image:: https://badges.genua.fr/travis/nitmir/django-cas-server/master.svg - :target: https://travis-ci.org/nitmir/django-cas-server +.. |travis| image:: https://badges.genua.fr/travis/com/nitmir/django-cas-server/master.svg + :target: https://travis-ci.com/nitmir/django-cas-server .. |pypi_version| image:: https://badges.genua.fr/pypi/v/django-cas-server.svg :target: https://pypi.org/project/django-cas-server/ diff --git a/cas_server/__init__.py b/cas_server/__init__.py index 66d4a2c..b8ffce2 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.2.0' +VERSION = '1.3.0' #: path the the application configuration class default_app_config = 'cas_server.apps.CasAppConfig'