diff --git a/VERSION b/VERSION
index 7d2424c90b0f1aae6e365363dd8353ee6da87f33..59009bc578c7b0252ad2d57b5b7fa5026083ff35 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.8.12
+1.8.13
diff --git a/params/version.go b/params/version.go
index 8991622ba6cf7807fb6fbd6de69baefc005ddf3f..c4d83f0a49297e4a8a344166bbd873b2f2275aac 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 = 8        // Minor version component of the current release
-	VersionPatch = 12       // 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 = 8          // Minor version component of the current release
+	VersionPatch = 13         // Patch version component of the current release
+	VersionMeta  = "unstable" // Version metadata to append to the version string
 )
 
 // Version holds the textual version string.