Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Simko <tibor.simko@cern.ch>
  • Loading branch information
tiborsimko committed Jun 26, 2014
1 parent 4eac700 commit 235cf92
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ Changelog
Here you can see the full list of changes between each Flask-SSO
release.

Version 0.2.0 (released 2014-06-26)
-----------------------------------
- Allowing ';' separator in HTTP data.
- Fix for dictionary key order in tests.
- Fix for Python 3.3 string comparison.
- New dependency: Blinker.
- Code coverage improved to 100%.
- New configuration option SSO_LOGIN_ENDPOINT.

Version 0.1
-----------
- Initial public release
45 changes: 45 additions & 0 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
==============================
Flask-SSO v0.2.0 is released
==============================

Flask-SSO v0.2.0 was released on June 26, 2014.

About
-----

Flask-SSO is a Flask extension permitting to set up Shibboleth
Single-Sign-On authentication in Flask based web applications.

What's new
----------

- Allowing ';' separator in HTTP data.
- Fix for dictionary key order in tests.
- Fix for Python 3.3 string comparison.
- New dependency: Blinker.
- Code coverage improved to 100%.
- New configuration option SSO_LOGIN_ENDPOINT.

Installation
------------

$ pip install Flask-SSO

Documentation
-------------

http://flask-sso.readthedocs.org/en/v0.2.0

Homepage
--------

https://github.com/inveniosoftware/flask-sso

Good luck and thanks for choosing Flask-SSO.

| Invenio Development Team
| Email: info@invenio-software.org
| IRC: #invenio on irc.freenode.net
| Twitter: http://twitter.com/inveniosoftware
| GitHub: http://github.com/inveniosoftware
| URL: http://invenio-software.org
2 changes: 1 addition & 1 deletion flask_sso/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
# Do not change the format of this next line. Doing so risks breaking
# setup.py and docs/conf.py

__version__ = "0.1.1-dev"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
#'Development Status :: 5 - Production/Stable',
'Development Status :: 5 - Production/Stable',
],
test_suite='nose.collector',
tests_require=['nose', 'coverage'],
Expand Down

0 comments on commit 235cf92

Please sign in to comment.