diff --git a/CHANGELOG b/CHANGELOG
index 9ef9fd667ccda74cfca125db195c0b89ff127e8d..7fcaceaf4c345f37ea64e70b48ffacaaec20b304 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -10,6 +10,20 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
 
 .. towncrier
 
+0.16.2 (2018-08-21)
+-------------------
+
+Upgrade instructions are available at
+https://docs.funkwhale.audio/upgrading.html
+
+Bugfixes:
+
+- Ensure we always have a default api url set on first load to avoid displaying
+  the instance picker (#490)
+- Fixed CLI importer syntax error because of async reserved keyword usage
+  (#494)
+
+
 0.16.1 (2018-08-19)
 -------------------
 
diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py
index 4b0303cdc2451744bf1d1514e09ccbd0337dd7a5..b897028f20708029a4a1154fe40aaf30b234b173 100644
--- a/api/funkwhale_api/__init__.py
+++ b/api/funkwhale_api/__init__.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-__version__ = "0.16.1"
+__version__ = "0.16.2"
 __version_info__ = tuple(
     [
         int(num) if num.isdigit() else num
diff --git a/changes/changelog.d/490.bugfix b/changes/changelog.d/490.bugfix
deleted file mode 100644
index da37bdf4bd25f51357f18ad5ab13bc65855046ec..0000000000000000000000000000000000000000
--- a/changes/changelog.d/490.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Ensure we always have a default api url set on first load to avoid displaying the instance picker (#490)
diff --git a/changes/changelog.d/494.bugfix b/changes/changelog.d/494.bugfix
deleted file mode 100644
index 4fc77f8585a32549681e3628095a38b949ea68c0..0000000000000000000000000000000000000000
--- a/changes/changelog.d/494.bugfix
+++ /dev/null
@@ -1 +0,0 @@
-Fixed CLI importer syntax error because of async reserved keyword usage (#494)