diff --git a/CHANGES.rst b/CHANGES.rst index d195447c..d3c4620f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,15 @@ Changes ======= +Version 1.3.0 (released 2020-05-15) + +- Introduce `InvenioOAuthClientREST` extension. +- The module can be used as a full REST OAuth service. For example, from + an SPA application. All responses are being handled by redirecting to + user's configured endpoints. +- The new configuration variable `OAUTHCLIENT_REST_REMOTE_APPS` defines the + registered applications that are using the REST OAuth workflow. + Version 1.2.1 (released 2020-04-17) - Fix args from redirect target' encoding diff --git a/invenio_oauthclient/version.py b/invenio_oauthclient/version.py index 93e92f4b..6e8acb9b 100644 --- a/invenio_oauthclient/version.py +++ b/invenio_oauthclient/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = '1.2.1' +__version__ = '1.3.0'