diff --git a/AUTHORS.rst b/AUTHORS.rst index bd482d16..564f3988 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -34,6 +34,7 @@ Invenio module that provides OAuth web authorization support. - Jiri Kuncar - Lars Holm Nielsen - Leonardo Rossi +- Ludmila Marian - Marco Neumann - Nicolas Harraudeau - Pamfilos Fokianos diff --git a/CHANGES.rst b/CHANGES.rst index f0e1fa8c..f7b556c2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -24,6 +24,24 @@ Changes ======= -Version 0.1.0 (release 2015-08-04) +Version 0.1.1 (released 2015-08-25) +----------------------------------- + +Improved features +~~~~~~~~~~~~~~~~~ + +- Improves the account setup for the CERN oauthclient. + +Bug fixes +~~~~~~~~~ + +- Adds missing `invenio_upgrader` dependency and amends past upgrade + recipes following its separation into standalone package. + +- Sends a validation email only if the option is enabled in the + config. (#4) + +Version 0.1.0 (released 2015-08-04) +----------------------------------- - Initial public release. diff --git a/MANIFEST.in b/MANIFEST.in index 58570774..796c387a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -23,7 +23,7 @@ include *.py include *.rst include *.txt -include .dockerignore .editorconfig +include .dockerignore .editorconfig .travis.yml include LICENSE include pytest.ini include tox.ini diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index 38a490ec..4f8c9d58 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,8 +1,8 @@ ============================ - Invenio-OAuthClient v0.1.0 + Invenio-OAuthClient v0.1.1 ============================ -Invenio-OAuthClient v0.1.0 was released on August 4, 2015. +Invenio-OAuthClient v0.1.1 was released on August 25, 2015. About ----- @@ -11,20 +11,29 @@ Invenio module that provides OAuth web authorization support. *This is an experimental development preview release.* -What's new ----------- +Improved features +----------------- -- Initial public release. +- Improves the account setup for the CERN oauthclient. + +Bug fixes +--------- + +- Adds missing `invenio_upgrader` dependency and amends past upgrade + recipes following its separation into standalone package. + +- Sends a validation email only if the option is enabled in the + config. (#4) Installation ------------ - $ pip install invenio-oauthclient==0.1.0 + $ pip install invenio-oauthclient==0.1.1 Documentation ------------- - http://invenio-oauthclient.readthedocs.org/en/v0.1.0 + http://invenio-oauthclient.readthedocs.org/en/v0.1.1 Happy hacking and thanks for flying Invenio-OAuthClient. diff --git a/invenio_oauthclient/version.py b/invenio_oauthclient/version.py index 1a2d9986..71a64077 100644 --- a/invenio_oauthclient/version.py +++ b/invenio_oauthclient/version.py @@ -28,4 +28,4 @@ and parsed by ``setup.py``. """ -__version__ = "0.1.1.dev20150804" +__version__ = "0.1.1"