diff --git a/CHANGELOG b/CHANGELOG
index 28205caea7e419d809a2f3f01b014ea303cdf078..df36eb05a3949c45819e81712af02069f032f504 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -10,6 +10,57 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
 
 .. towncrier
 
+0.21.1 (2020-06-11)
+-------------------
+
+Upgrade instructions are available at
+https://docs.funkwhale.audio/index.html
+
+
+Features:
+
+- Support a --watch mode with ``import_files`` to automatically add, update and remove files when filesystem is updated (#721)
+
+Enhancements:
+
+- Added new channels widget on pod landing page (#1113)
+- Fix HTML <title> not including instance name in some situations (#1107)
+- Make URL-building logic more resilient against reverse proxy misconfiguration (#1085)
+- Removed unused masonry dependency (#1112)
+- Support for specifying itunes:email and itunes:name in channels for compatibiliy with third-party platforms (#1154)
+- Updated the /api/v1/libraries endpoint to support listing public libraries from other users/pods (#1151)
+
+
+Bugfixes:
+
+- Added safeguard to ensure local uploads are never purged from cache (#1086)
+- Ensure firefox password manager dont autofill username in search bar (#1090)
+- Ensure player doesn't disappear when last queue track is removed manually (#1092)
+- Ensure tracks linked to skipped upload can be pruned (#1011)
+- Fix playlist modal only listing 50 first playlists (#1087)
+- Fixed a wording issue on artist channel page (#1117)
+- Fixed crash on python 3.5 with cli importer (#1155)
+- Fixed issue when displaying starred tracks on subsonic (#1082)
+- Fixed mimetype detection issue that broke transcoding on some tracks (#1093). Run ``python manage.py fix_uploads --mimetype`` to set proper mimetypes on existing uploads.
+- Fixed page not refreshing when switching between My Library and Explore sections (#1091)
+- Fixed recursive CLI importing crashing under Python 3.5 (#1148, #1147)
+- Fixed wrong album and track count in admin artist API (#1096)
+- Include tracks by album artist when filtering by artist on /api/v1/tracks (#1078)
+
+Small API breaking change in ``/api/v1/libraries``
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+To allow easier crawling of public libraries on a pod,we had to make a slight breaking change
+to the behaviour of ``GET /api/v1/libraries``.
+
+Before, it returned only libraries owned by the current user.
+
+Now, it returns all the accessible libraries (including ones from other users and pods).
+
+If you are consuming the API via a third-party client and need to retrieve your libraries,
+use the ``scope`` parameter, like this: ``GET /api/v1/libraries?scope=me``
+
+
 0.21 "Agate" (2020-04-24)
 -------------------------
 
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index fe081b97c499da712b91d0e3c3d882f7d085c22d..b313b6da6a61ff57b2f772c08f9939099b341ea5 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -746,7 +746,7 @@ To make a new 3.4 release::
     nano CHANGELOG
 
     # Set the `__version__` variable to $NEXT_RELEASE
-    nano nano api/funkwhale_api/__init__.py
+    nano api/funkwhale_api/__init__.py
 
     # commit
     git add .
diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py
index ea28336fcc24654a2d35666ade3c564e7ecd6201..9ad0c1d71cdc860a436df16ed55e4c59565bc5a2 100644
--- a/api/funkwhale_api/__init__.py
+++ b/api/funkwhale_api/__init__.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-__version__ = "0.21"
+__version__ = "0.21.1"
 __version_info__ = tuple(
     [
         int(num) if num.isdigit() else num
diff --git a/changes/changelog.d/1011.bugfix b/changes/changelog.d/1011.bugfix
deleted file mode 100644
index 0b52c0e6e8a96225db56141d55ebc198c592caf3..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1011.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Ensure tracks linked to skipped upload can be pruned (#1011)
diff --git a/changes/changelog.d/1048.bugfix b/changes/changelog.d/1048.bugfix
deleted file mode 100644
index 0f1973444147ffad54d32a715f7fa5d9a07dda28..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1048.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed recursive CLI importing crashing under Python 3.5 (#1148, #1147)
diff --git a/changes/changelog.d/1078.bugfix b/changes/changelog.d/1078.bugfix
deleted file mode 100644
index fc966e9bd3f4afbdb032309088a2ea22a722eb72..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1078.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Include tracks by album artist when filtering by artist on /api/v1/tracks (#1078)
diff --git a/changes/changelog.d/1082.bugfix b/changes/changelog.d/1082.bugfix
deleted file mode 100644
index b99f0c1f0aa9c3984ee0cb4c4d18e5a3988663d3..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1082.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed issue when displaying starred tracks on subsonic (#1082)
diff --git a/changes/changelog.d/1085.enhancement b/changes/changelog.d/1085.enhancement
deleted file mode 100644
index 49cbee6f85eef04eba6d776fbe78186fdd72b423..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1085.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Make URL-building logic more resilient against reverse proxy misconfiguration (#1085)
diff --git a/changes/changelog.d/1086.bugfix b/changes/changelog.d/1086.bugfix
deleted file mode 100644
index db7c38ddad1046da32388324033805c025a023c0..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1086.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Added safeguard to ensure local uploads are never purged from cache (#1086)
diff --git a/changes/changelog.d/1087.bugfix b/changes/changelog.d/1087.bugfix
deleted file mode 100644
index 36293d96a42cad53eca6f82eb7bfc6f0f761f505..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1087.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix playlist modal only listing 50 first playlists (#1087)
diff --git a/changes/changelog.d/1090.bugfix b/changes/changelog.d/1090.bugfix
deleted file mode 100644
index 59be2db6bfb70d43b48ca0ed5841fdfcdb65d807..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1090.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Ensure firefox password manager dont autofill username in search bar (#1090)
diff --git a/changes/changelog.d/1091.bugfix b/changes/changelog.d/1091.bugfix
deleted file mode 100644
index d51cd00df5aa272d476846a3d7c9cfcc72583c86..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1091.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed page not refreshing when switching between My Library and Explore sections (#1091)
diff --git a/changes/changelog.d/1092.bugfix b/changes/changelog.d/1092.bugfix
deleted file mode 100644
index 018470ac801681bdeaf4aa1fb04516195f2876d9..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1092.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Ensure player doesn't disappear when last queue track is removed manually (#1092)
diff --git a/changes/changelog.d/1093.bugfix b/changes/changelog.d/1093.bugfix
deleted file mode 100644
index 0295841afbc6bf9e3eec87a27cede78ea104e055..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1093.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed mimetype detection issue that broke transcoding on some tracks (#1093). Run ``python manage.py fix_uploads --mimetype`` to set proper mimetypes on existing uploads.
diff --git a/changes/changelog.d/1096.bugfix b/changes/changelog.d/1096.bugfix
deleted file mode 100644
index 81ffb284d9a59783606b09c69baa4d00b2e11983..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1096.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed wrong album and track count in admin artist API (#1096)
diff --git a/changes/changelog.d/1107.enhancement b/changes/changelog.d/1107.enhancement
deleted file mode 100644
index 2b4ff88639e44fbacb9e5cda8c89f1feef8d45f9..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1107.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Fix HTML <title> not including instance name in some situations (#1107)
diff --git a/changes/changelog.d/1112.enhancement b/changes/changelog.d/1112.enhancement
deleted file mode 100644
index 28d3a3739f26c3cde342aa6de1bf04d0ed8936c2..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1112.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Removed unused masonry dependency (#1112)
diff --git a/changes/changelog.d/1113.enhancement b/changes/changelog.d/1113.enhancement
deleted file mode 100644
index 979b33056dfd728c2b2ca9c1298962cfa25d7b2a..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1113.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Added new channels widget on pod landing page (#1113)
diff --git a/changes/changelog.d/1117.bugfix b/changes/changelog.d/1117.bugfix
deleted file mode 100644
index b2236ee70ae1d1186322e5f57d1d50a9d74d70d4..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1117.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed a wording issue on artist channel page (#1117)
diff --git a/changes/changelog.d/1151.enhancement b/changes/changelog.d/1151.enhancement
deleted file mode 100644
index c9b867a30208c3669a9d4b93571add7fc588e04b..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1151.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Updated the /api/v1/libraries endpoint to support listing public libraries from other users/pods (#1151)
diff --git a/changes/changelog.d/1154.enhancement b/changes/changelog.d/1154.enhancement
deleted file mode 100644
index e5caf89764268f99b63a2239cfbbda865fee27cd..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1154.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Support for specifying itunes:email and itunes:name in channels for compatibiliy with third-party platforms (#1154)
diff --git a/changes/changelog.d/1155.bugfix b/changes/changelog.d/1155.bugfix
deleted file mode 100644
index e67ec0d74a49faebe6d603dd83c52fe29dd04b87..0000000000000000000000000000000000000000
--- a/changes/changelog.d/1155.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed crash on python 3.5 with cli importer (#1155)
diff --git a/changes/changelog.d/721.feature b/changes/changelog.d/721.feature
deleted file mode 100644
index 332f992eb920af097722f0613149590f1a918416..0000000000000000000000000000000000000000
--- a/changes/changelog.d/721.feature
+++ /dev/null
@@ -1 +0,0 @@
-Support a --watch mode with ``import_files`` to automatically add, update and remove files when filesystem is updated (#721)