Skip to content

Commit 24bdec8

Browse files
authored
Merge pull request #92 from kstateome/develop
1.5.2
2 parents 2d2a202 + 148d8b7 commit 24bdec8

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.5.2
2+
- Fix gateway feature (https://github.com/kstateome/django-cas/pull/91)
3+
14
### 1.5.1
25
- Include request in authenticate and evaluate gateway query_list (https://github.com/kstateome/django-cas/pull/87)
36

CONTRIBUTORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ bltravis
66
JordanReiter
77
balsdorf
88
kensler
9-
ryanbagwell
9+
ryanbagwell
10+
ptitloup

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.5.1
5+
Current version: 1.5.2
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.5.1
17+
pip install django-cas-client==1.5.2
1818

1919

2020
### Add to URLs

cas/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def _service_url(request, redirect_to=None, gateway=False):
6767
for index, item2 in enumerate(gateway_params):
6868
if item[0] == item2[0]:
6969
gateway_params.pop(index)
70-
extra_params = gateway_params + list(query_list)
70+
extra_params = gateway_params + list(query_dict.items())
7171

7272
#Sort params by key name so they are always in the same order.
7373
sorted_params = sorted(extra_params, key=itemgetter(0))

docs/source/changelog.rst

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

4+
1.5.2
5+
------------------
6+
- Fix gateway feature (https://github.com/kstateome/django-cas/pull/91)
7+
48
1.5.1
59
------------------
610
- Include request in authenticate and evaluate gateway query_list (https://github.com/kstateome/django-cas/pull/87)

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.5.1'
61+
version = '1.5.2'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.5.1'
63+
release = '1.5.2'
6464

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

setup.py

Lines changed: 2 additions & 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.5.1'
5+
version = '1.5.2'
66

77

88
def read(fname):
@@ -13,6 +13,7 @@ def read(fname):
1313
version=version,
1414
description="Django Cas Client",
1515
long_description=read('README.md'),
16+
long_description_content_type='text/markdown',
1617
classifiers=[
1718
"Development Status :: 5 - Production/Stable",
1819
"Environment :: Web Environment",

0 commit comments

Comments
 (0)