diff --git a/CHANGELOG b/CHANGELOG
index 72e98a449aa43a4ef32f02c61736c391da25d5e1..c02e7665e1fe5de08762c1cc24ad77dad397b045 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,10 +4,15 @@ Changelog
 0.6 (Unreleased)
 ----------------
 
+
+0.5.1 (2018-02-24)
+------------------
+
 - Front: Fixed broken ajax call on radio builder (#69)
 - Front: Shuffle now restart next track from beginning (#70)
 - Front: volume slider should now have the same style everywhere (#72)
 
+
 0.5 (2018-02-24)
 ----------------
 
diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py
index 7675f9251bc44f178c27e0c96b7846a0a5410931..d3e404f122db7601939f9f3cea1ce64a6cc60383 100644
--- a/api/funkwhale_api/__init__.py
+++ b/api/funkwhale_api/__init__.py
@@ -1,3 +1,3 @@
 # -*- coding: utf-8 -*-
-__version__ = '0.5'
+__version__ = '0.5.1'
 __version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])