diff --git a/CHANGELOG.md b/CHANGELOG.md index 7aeee2f..ffed157 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.7.0] - 2024-04-04 + +### Added + +- Send user newsletter subscription status in the user token + ## [0.6.0] - 2024-03-13 ### Added @@ -62,7 +68,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). `API Blueprint `\_). -[unreleased]: https://github.com/openfun/fonzie/compare/v0.6.0...master +[unreleased]: https://github.com/openfun/fonzie/compare/v0.7.0...master +[0.7.0]: https://github.com/openfun/fonzie/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/openfun/fonzie/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/openfun/fonzie/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/openfun/fonzie/compare/v0.3.0...v0.4.0 diff --git a/docs/conf.py b/docs/conf.py index 7dbba03..1d415cc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -172,7 +172,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = 'fonzie v0.6.0' +# html_title = 'fonzie v0.7.0' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/docs/developer_guide.rst b/docs/developer_guide.rst index dc07284..4527f08 100644 --- a/docs/developer_guide.rst +++ b/docs/developer_guide.rst @@ -47,7 +47,7 @@ well: .. code-block:: bash $ curl http://www.mydomain.com:8080/api/v1.0/status/version - {"version":"0.6.0"} + {"version":"0.7.0"} Development workflow diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 6fc2cf2..79f4aca 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -85,7 +85,7 @@ project `_) to query the API: X-Frame-Options: ALLOW { - "version": "0.6.0" + "version": "0.7.0" } @@ -95,7 +95,7 @@ Alternatively, you can use ``curl``: .. code-block:: bash $ curl http://www.mydomain.com:8080/api/v1.0/status/version - {"version":"0.6.0"} + {"version":"0.7.0"} The output of this command should be a JSON payload containing the running diff --git a/fonzie-v1-0.apib b/fonzie-v1-0.apib index 23c8cce..1cf81cb 100644 --- a/fonzie-v1-0.apib +++ b/fonzie-v1-0.apib @@ -18,5 +18,5 @@ API status checking. + Response 200 (application/json) { - "version": "0.6.0" + "version": "0.7.0" } diff --git a/setup.cfg b/setup.cfg index 9144d77..ae9ded5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ ;; [metadata] name = fonzie -version = 0.6.0 +version = 0.7.0 description = A FUN API for Open edX long_description = file: README.rst author = Open FUN (France Universite Numerique)