diff --git a/CHANGELOG.md b/CHANGELOG.md
index d1285e1..4f73471 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,10 +9,13 @@ Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
+## [0.2.1] - 2019-10-10
+
### Fixed
- ACL: Support filenames using `@` and `+` (e.g. course problem responses
report)
+- Fix CI tree creation order
## [0.2.0] - 2019-05-21
@@ -24,7 +27,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
`API Blueprint `\_).
-[unreleased]: https://github.com/openfun/fonzie/compare/v0.2.0...master
+[unreleased]: https://github.com/openfun/fonzie/compare/v0.2.1...master
+[0.2.1]: https://github.com/openfun/fonzie/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/openfun/fonzie/compare/b31adef...v0.2.0
diff --git a/docs/conf.py b/docs/conf.py
index 8eb1fca..ca19bc9 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.2.0'
+# html_title = 'fonzie v0.2.1'
# 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 abff3d9..203b303 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.2.0"}
+ {"version":"0.2.1"}
Development workflow
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index 7f18a90..98e4ca1 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.2.0"
+ "version": "0.2.1"
}
@@ -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.2.0"}
+ {"version":"0.2.1"}
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 eb480f9..9f94400 100644
--- a/fonzie-v1-0.apib
+++ b/fonzie-v1-0.apib
@@ -18,5 +18,5 @@ API status checking.
+ Response 200 (application/json)
{
- "version": "0.2.0"
+ "version": "0.2.1"
}
diff --git a/setup.cfg b/setup.cfg
index a9bd19c..819ec31 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,7 +3,7 @@
;;
[metadata]
name = fonzie
-version = 0.2.0
+version = 0.2.1
description = A FUN API for Open edX
long_description = file: README.rst
author = Open FUN (France Universite Numerique)