Skip to content

Commit b754437

Browse files
committed
Update changelog, change version to 1.2.0 and update documentation
1 parent d4a45fb commit b754437

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
### 1.1.2
1+
### 1.2.0
22

33
- Allow opt out of time delay caused by fetching PGT tickets
44
- Add support for gateway not returning a response
55
- Allow forcing service URL over HTTPS (https://github.com/kstateome/django-cas/pull/48)
6+
- Allow user creation on first login to be optional (https://github.com/kstateome/django-cas/pull/49)
67

78
### 1.1.1
89

910
- Add a few logging statements
10-
- Add official change log.
11+
- Add official change log.

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

1919

2020
### Add to URLs

docs/source/changelog.rst

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

4-
1.1.2 (Unreleased)
4+
1.2.0 (Unreleased)
55
------------------
66

7+
- Allow opt out of time delay caused by fetching PGT tickets
78
- Add support for gateway not returning a response
8-
9+
- Allow forcing service URL over HTTPS (https://github.com/kstateome/django-cas/pull/48)
10+
- Allow user creation on first login to be optional (https://github.com/kstateome/django-cas/pull/49)
911

1012
1.1.1
1113
-----

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

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

docs/source/gettingstarted.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,15 @@ Then, add the ``gateway`` decorator to a view::
117117
To show a custom forbidden page, set ``CAS_CUSTOM_FORBIDDEN`` to a ``path.to.some_view``. Otherwise,
118118
a generic ``HttpResponseForbidden`` will be returned.
119119

120+
**Require SSL Login**
121+
122+
To force the service url to always target HTTPS, set ``CAS_FORCE_SSL_SERVICE_URL`` to ``True``.
123+
124+
**Automatically Create Users on First Login**
125+
126+
By default, a stub user record will be created on the first successful CAS authentication
127+
using the username in the response. If this behavior is not desired set
128+
``CAS_AUTO_CREATE_USER`` to ``Flase``.
120129

121130
**Proxy Tickets**
122131

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.1.2'
5+
version = '1.2.0'
66

77

88
def read(fname):

0 commit comments

Comments
 (0)