diff --git a/VERSION b/VERSION
index 9edc58bb1dd8cff2f0729fabe243a96e33f9d453..9f05f9f2ce1c66b8e4327cd51e27c8c983a64293 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.6.4
+1.6.5
diff --git a/params/version.go b/params/version.go
index 8c07b8a3faa902d419a61abd301275c0555a1bd6..44109172ecbee376893387d7cb08e0b7f271dd6d 100644
--- a/params/version.go
+++ b/params/version.go
@@ -21,10 +21,10 @@ import (
 )
 
 const (
-	VersionMajor = 1        // Major version component of the current release
-	VersionMinor = 6        // Minor version component of the current release
-	VersionPatch = 4        // Patch version component of the current release
-	VersionMeta  = "stable" // Version metadata to append to the version string
+	VersionMajor = 1          // Major version component of the current release
+	VersionMinor = 6          // Minor version component of the current release
+	VersionPatch = 5          // Patch version component of the current release
+	VersionMeta  = "unstable" // Version metadata to append to the version string
 )
 
 // Version holds the textual version string.