diff --git a/CHANGELOG.md b/CHANGELOG.md
index b47ac3d505074a13dc05de4bd31b1ff815731503..cff14c1a66a117b1cbdd4c8298ddf51a795b01cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v0.1.2 - 2020-02-24
+
+* Adds `--version` flag to retrieve the GoShimmer version
+* Adds the version and commit hash to the remote log logging
+* Replaces the autopeering module with the one from hive.go 
+* Changed the pprof listen port to `6061` to avoid conflict with Hornet
+* Fixes `invalid stored peer` messages
+* Fixes masternodes getting removed if they were offline
+* Fixes `-c` and `-d` to define config file/dir
+* Fixes drop messages about full queues appearing too many times
+* Fixes crash due to incopatible transaction size
+* Changed the salt lifetime to 2 hours from 30 minutes
+
 # v0.1.1 - 2020-02-07
 
 This release contains a series of fixes:
diff --git a/plugins/cli/plugin.go b/plugins/cli/plugin.go
index 3075d0431d81b0e1daf9a6990fe4a9f4474d79cb..13c03bc5e850ac019410ec490bf5d1489d750c2b 100644
--- a/plugins/cli/plugin.go
+++ b/plugins/cli/plugin.go
@@ -13,7 +13,7 @@ import (
 
 const (
 	// AppVersion version number
-	AppVersion = "v0.1.1"
+	AppVersion = "v0.1.2"
 	// AppName app code name
 	AppName = "GoShimmer"
 )