diff --git a/CHANGELOG b/CHANGELOG
index c0b1487047a330ddb167128ee593c77d31896e7b..9ef9fd667ccda74cfca125db195c0b89ff127e8d 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -10,6 +10,81 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
 
 .. towncrier
 
+0.16.1 (2018-08-19)
+-------------------
+
+Upgrade instructions are available at
+https://docs.funkwhale.audio/upgrading.html
+
+Features:
+
+- Make funkwhale themable by loading external stylesheets (#456)
+
+Enhancements:
+
+- Add link to admin on "Staff member" button (#202)
+- Can now add a description to radios and better radio cards (#331)
+- Display track duration in track tables (#461)
+- More permissive default permissions for front-end files (#388)
+- Simpler configuration and toolchain for the front-end using vue-cli (!375)
+- Use Howler to manage audio instead of our own dirty/untested code (#392)
+
+
+Bugfixes:
+
+- Fix alignment issue on top bar in Admin tabs (#395)
+- Fix Apache2 permission issue preventing `/media` folder from being served
+  correctly (#389)
+- Fix loading on browse page lists causing them to go down, and dimming over
+  the top bar (#468)
+- Fixed (again): administration section not showing up in sidebar after login
+  (#245)
+- Fixed audio mimetype not showing up on track detail and list (#459)
+- Fixed broken audio playback on Chrome and invisible volume control (#390)
+- Fixed broken federation import on big imports due to missing transaction
+  logic (#397)
+- Fixed crash on artist pages when no cover is available (#457)
+- Fixed favorited status of tracks not appearing in interface (#398)
+- Fixed invitation code not prefilled in form when accessing invitation link
+  (#476)
+- Fixed typos in scheduled tasks configuration (#487)
+- Removed release date error in case of empty date (#478)
+- Removed white on white artist button on hover, on Album page (#393)
+- Smarter date parsing during import by replacing arrow with pendulum (#376)
+- Display public playlists properly for anonymous users (#488)
+
+
+i18n:
+
+- Added portuguese, spanish and german translations
+
+
+Custom themes for Funkwhale
+^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+If you ever wanted to give a custom look and feel to your instance, this is now possible.
+
+Check https://docs.funkwhale.audio/configuration.html#theming if you want to know more!
+
+
+Fix Apache2 configuration file for media block [Manual action required]
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+The permission scope on the current Apache2 configuration file is too narrow, preventing thumbnails from being served.
+
+On Apache2 setups, you have to replace the following line::
+
+    <Directory /srv/funkwhale/data/media/albums>
+
+with::
+
+    <Directory /srv/funkwhale/data/media>
+
+You can now restart your server::
+
+    sudo systemctl restart apache2
+
+
 0.16 (2018-07-22)
 -----------------
 
diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py
index 7c227503395ae908b0041881131563252b1c461e..4b0303cdc2451744bf1d1514e09ccbd0337dd7a5 100644
--- a/api/funkwhale_api/__init__.py
+++ b/api/funkwhale_api/__init__.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-__version__ = "0.16"
+__version__ = "0.16.1"
 __version_info__ = tuple(
     [
         int(num) if num.isdigit() else num
diff --git a/changes/changelog.d/202.enhancement b/changes/changelog.d/202.enhancement
deleted file mode 100644
index eefee926f5d647bcdebdaa489e8b0dd2199f5831..0000000000000000000000000000000000000000
--- a/changes/changelog.d/202.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Add link to admin on "Staff member" button (#202)
diff --git a/changes/changelog.d/245.bugfix b/changes/changelog.d/245.bugfix
deleted file mode 100644
index ae624f25d2830ab46a73fd22bef512135e14ef52..0000000000000000000000000000000000000000
--- a/changes/changelog.d/245.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed (again): administration section not showing up in sidebar after login (#245)
diff --git a/changes/changelog.d/331.enhancement b/changes/changelog.d/331.enhancement
deleted file mode 100644
index 070dbc82ee6c86297fa5322b970e77e8b9cfb24f..0000000000000000000000000000000000000000
--- a/changes/changelog.d/331.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Can now add a description to radios and better radio cards (#331)
diff --git a/changes/changelog.d/376.bugfix b/changes/changelog.d/376.bugfix
deleted file mode 100644
index b5e8379d85115fd2aa80b92e1ec450684dfaf409..0000000000000000000000000000000000000000
--- a/changes/changelog.d/376.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Smarter date parsing during import by replacing arrow with pendulum (#376)
diff --git a/changes/changelog.d/388.enhancement b/changes/changelog.d/388.enhancement
deleted file mode 100644
index 5ab2bc34b634fdef726cd391952a39c2ec4a35f9..0000000000000000000000000000000000000000
--- a/changes/changelog.d/388.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-More permissive default permissions for front-end files (#388)
diff --git a/changes/changelog.d/389.bugfix b/changes/changelog.d/389.bugfix
deleted file mode 100644
index 6cfb3ca39e94143459f971a64eb065f48a41c6ec..0000000000000000000000000000000000000000
--- a/changes/changelog.d/389.bugfix
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix Apache2 permission issue preventing `/media` folder from being served correctly (#389)
-
-
-Fix Apache2 configuration file for media block [Manual action required]
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-The permission scope on the current Apache2 configuration file is too narrow, preventing thumbnails from being served.
-
-On Apache2 setups, you have to replace the following line::
-
-    <Directory /srv/funkwhale/data/media/albums>
-
-with::
-
-    <Directory /srv/funkwhale/data/media>
-
-You can now restart your server::
-
-    sudo systemctl restart apache2
diff --git a/changes/changelog.d/390.bugfix b/changes/changelog.d/390.bugfix
deleted file mode 100644
index df80a8b1db18c040ca4897cb73dabaf143e3808c..0000000000000000000000000000000000000000
--- a/changes/changelog.d/390.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed broken audio playback on Chrome and invisible volume control (#390)
diff --git a/changes/changelog.d/392.enhancement b/changes/changelog.d/392.enhancement
deleted file mode 100644
index 11ca09ac37cd8e60eba59fcaa6bcd561fdd00adf..0000000000000000000000000000000000000000
--- a/changes/changelog.d/392.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Use Howler to manage audio instead of our own dirty/untested code (#392)
diff --git a/changes/changelog.d/393.bugfix b/changes/changelog.d/393.bugfix
deleted file mode 100644
index 02cd50f72dabe45b548d4578f2f6ee869506a4ce..0000000000000000000000000000000000000000
--- a/changes/changelog.d/393.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Removed white on white artist button on hover, on Album page (#393)
diff --git a/changes/changelog.d/395.bugfix b/changes/changelog.d/395.bugfix
deleted file mode 100644
index b47107a8b3d86138026253b72417005b94751e99..0000000000000000000000000000000000000000
--- a/changes/changelog.d/395.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix alignment issue on top bar in Admin tabs (#395)
diff --git a/changes/changelog.d/397.bugfix b/changes/changelog.d/397.bugfix
deleted file mode 100644
index 6eca3267427f6e8061872a449278525b0b2ec4c1..0000000000000000000000000000000000000000
--- a/changes/changelog.d/397.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed broken federation import on big imports due to missing transaction logic (#397)
diff --git a/changes/changelog.d/398.bugfix b/changes/changelog.d/398.bugfix
deleted file mode 100644
index 807b643a20c1b886d09df57c340f840e57ae5a3b..0000000000000000000000000000000000000000
--- a/changes/changelog.d/398.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed favorited status of tracks not appearing in interface (#398)
diff --git a/changes/changelog.d/456.feature b/changes/changelog.d/456.feature
deleted file mode 100644
index f05188e98c51fffa2bbcde613e62e62d3d46f2ed..0000000000000000000000000000000000000000
--- a/changes/changelog.d/456.feature
+++ /dev/null
@@ -1,8 +0,0 @@
-Make funkwhale themable by loading external stylesheets (#456)
-
-Custom themes for Funkwhale
-^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-If you ever wanted to give a custom look and feel to your instance, this is now possible.
-
-Check https://docs.funkwhale.audio/configuration.html#theming if you want to know more!
diff --git a/changes/changelog.d/457.bugfix b/changes/changelog.d/457.bugfix
deleted file mode 100644
index bfd9dc967388028032b1221fb2f5872f41685c46..0000000000000000000000000000000000000000
--- a/changes/changelog.d/457.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed crash on artist pages when no cover is available (#457)
diff --git a/changes/changelog.d/459.bugfix b/changes/changelog.d/459.bugfix
deleted file mode 100644
index b76fa78938677151519881ba78ab665a32ad0314..0000000000000000000000000000000000000000
--- a/changes/changelog.d/459.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed audio mimetype not showing up on track detail and list (#459)
diff --git a/changes/changelog.d/461.enhancement b/changes/changelog.d/461.enhancement
deleted file mode 100644
index 63cd0193fe6d5d769eb61b85e0060780f14e42e0..0000000000000000000000000000000000000000
--- a/changes/changelog.d/461.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Display track duration in track tables (#461)
diff --git a/changes/changelog.d/468.bugfix b/changes/changelog.d/468.bugfix
deleted file mode 100644
index c5fdfce5e5b87aba06e29572e1cd1bee86d36e87..0000000000000000000000000000000000000000
--- a/changes/changelog.d/468.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fix loading on browse page lists causing them to go down, and dimming over the top bar (#468)
diff --git a/changes/changelog.d/476.bugfix b/changes/changelog.d/476.bugfix
deleted file mode 100644
index e2efbc0a3ae8781d840c3526e0acb53fdaae2089..0000000000000000000000000000000000000000
--- a/changes/changelog.d/476.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed invitation code not prefilled in form when accessing invitation link (#476)
diff --git a/changes/changelog.d/478.bugfix b/changes/changelog.d/478.bugfix
deleted file mode 100644
index 4ed2b5b094fced291efda735edc3fb6da6553cd6..0000000000000000000000000000000000000000
--- a/changes/changelog.d/478.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Removed release date error in case of empty date (#478)
diff --git a/changes/changelog.d/487.bugfix b/changes/changelog.d/487.bugfix
deleted file mode 100644
index 9bff9a59d558975b4d6fabcb06ca18862dd3a3df..0000000000000000000000000000000000000000
--- a/changes/changelog.d/487.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed typos in scheduled tasks configuration (#487)
diff --git a/changes/changelog.d/488.bugfix b/changes/changelog.d/488.bugfix
deleted file mode 100644
index a670ee7431d677db6cd04b6ec2f14ea1905b0d89..0000000000000000000000000000000000000000
--- a/changes/changelog.d/488.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Display public playlists properly for anonymous users (#488)
diff --git a/changes/changelog.d/new-languages.i18n b/changes/changelog.d/new-languages.i18n
deleted file mode 100644
index 9d5226625728c824d0bed74376b53d4978d1e4ce..0000000000000000000000000000000000000000
--- a/changes/changelog.d/new-languages.i18n
+++ /dev/null
@@ -1 +0,0 @@
-Added portuguese, spanish and german translations
diff --git a/changes/changelog.d/webpack.enhancement b/changes/changelog.d/webpack.enhancement
deleted file mode 100644
index e99a7a0c53361ee0a7848fdd680d459f9ea393b6..0000000000000000000000000000000000000000
--- a/changes/changelog.d/webpack.enhancement
+++ /dev/null
@@ -1 +0,0 @@
-Simpler configuration and toolchain for the front-end using vue-cli (!375)