Skip to content

Commit 0fd17f6

Browse files
authored
Merge pull request #78 from kstateome/develop
1.5.0
2 parents 697448b + 8a87109 commit 0fd17f6

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.5.0
2+
- Path Change (https://github.com/kstateome/django-cas/pull/76)
3+
- Update authenticate method (https://github.com/kstateome/django-cas/pull/77/files)
4+
15
### 1.4.0
26
- Compatibility with Django 2.0 (https://github.com/kstateome/django-cas/pull/72)
37

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ cordmata
55
bltravis
66
JordanReiter
77
balsdorf
8+
kensler
9+
ryanbagwell

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
CAS client for Django. This library requires Django 1.5 or above, and Python 2.6, 2.7, 3.4
44

5-
Current version: 1.4.0
5+
Current version: 1.5.0
66

77
This is [K-State's fork](https://github.com/kstateome/django-cas) of [the original](https://bitbucket.org/cpcc/django-cas/overview) and includes [several additional features](https://github.com/kstateome/django-cas/#additional-features) as well as features merged from
88

@@ -14,7 +14,7 @@ This is [K-State's fork](https://github.com/kstateome/django-cas) of [the or
1414

1515
This project is registered on PyPi as django-cas-client. To install::
1616

17-
pip install django-cas-client==1.4.0
17+
pip install django-cas-client==1.5.0
1818

1919

2020
### Add to URLs

cas/backends.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ class CASBackend(object):
221221
supports_object_permissions = False
222222
supports_inactive_user = False
223223

224-
def authenticate(self, ticket, service):
224+
def authenticate(self, request, ticket, service):
225225
"""
226226
Verifies CAS ticket and gets or creates User object
227227
NB: Use of PT to identify proxy

docs/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
1.5.0
5+
------------------
6+
- Path Change (https://github.com/kstateome/django-cas/pull/76)
7+
- Update authenticate method (https://github.com/kstateome/django-cas/pull/77/files)
8+
49
1.4.0
510
------------------
611
- Compatibility with Django 2.0 (https://github.com/kstateome/django-cas/pull/72)

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '1.4.0'
61+
version = '1.5.0'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.4.0'
63+
release = '1.5.0'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup, find_packages
44

5-
version = '1.4.0'
5+
version = '1.5.0'
66

77

88
def read(fname):

0 commit comments

Comments
 (0)