Skip to content

Commit

Permalink
Merge pull request #92 from kstateome/develop
Browse files Browse the repository at this point in the history
1.5.2
  • Loading branch information
keithbauer authored Sep 23, 2019
2 parents 2d2a202 + 148d8b7 commit 24bdec8
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.5.2
- Fix gateway feature (https://github.com/kstateome/django-cas/pull/91)

### 1.5.1
- Include request in authenticate and evaluate gateway query_list (https://github.com/kstateome/django-cas/pull/87)

Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ bltravis
JordanReiter
balsdorf
kensler
ryanbagwell
ryanbagwell
ptitloup
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

Current version: 1.5.1
Current version: 1.5.2

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

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

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

pip install django-cas-client==1.5.1
pip install django-cas-client==1.5.2


### Add to URLs
Expand Down
2 changes: 1 addition & 1 deletion cas/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def _service_url(request, redirect_to=None, gateway=False):
for index, item2 in enumerate(gateway_params):
if item[0] == item2[0]:
gateway_params.pop(index)
extra_params = gateway_params + list(query_list)
extra_params = gateway_params + list(query_dict.items())

#Sort params by key name so they are always in the same order.
sorted_params = sorted(extra_params, key=itemgetter(0))
Expand Down
4 changes: 4 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.5.2
------------------
- Fix gateway feature (https://github.com/kstateome/django-cas/pull/91)

1.5.1
------------------
- Include request in authenticate and evaluate gateway query_list (https://github.com/kstateome/django-cas/pull/87)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '1.5.1'
version = '1.5.2'
# The full version, including alpha/beta/rc tags.
release = '1.5.1'
release = '1.5.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

version = '1.5.1'
version = '1.5.2'


def read(fname):
Expand All @@ -13,6 +13,7 @@ def read(fname):
version=version,
description="Django Cas Client",
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand Down

0 comments on commit 24bdec8

Please sign in to comment.