From 7f23812456e5a96b7542bd0135f225ed18c0cb97 Mon Sep 17 00:00:00 2001
From: Luca Moser <moser.luca@gmail.com>
Date: Mon, 24 Feb 2020 15:25:03 +0100
Subject: [PATCH] Adds changelog entry for v0.1.2 and bumps version number
 (#265)

* updates changelog for v0.1.2 release

* bumps version number to v0.1.2
---
 CHANGELOG.md          | 13 +++++++++++++
 plugins/cli/plugin.go |  2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b47ac3d5..cff14c1a 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 3075d043..13c03bc5 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"
 )
-- 
GitLab