From 6bab15cf06442d2a8d2d0282186258b076fcc393 Mon Sep 17 00:00:00 2001
From: Luca Moser <moser.luca@gmail.com>
Date: Fri, 7 Feb 2020 16:31:06 +0100
Subject: [PATCH] Bumps version to v0.1.1 (#240)

* bumps version number to v0.1.1

* adds changelog entry for v0.1.1
---
 CHANGELOG.md          | 14 ++++++++++++++
 plugins/cli/plugin.go |  2 +-
 2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index b10d7fa5..b47ac3d5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,17 @@
+# v0.1.1 - 2020-02-07
+
+This release contains a series of fixes:
+* Adds logging of the underlying error when a neighbor connection couldn't be established
+* Adds the `RemoteLog` plugin (disabled per default) which sends log messages to a centralized logging service
+* Removes the status screen plugin in favor of the SPA/dashboard
+* Fixes the neighbor send queue being too small causing spam in the log
+* Fixes a deadlock which occurred when a neighbor disconnected while at the same time a `request transaction` 
+packet was getting processed which was received by the disconnected neighbor
+* Fixes memory consumption by disabling BadgerDB's compression
+* Fixes analysis server WebSocket replays freezing the backend code
+* Fixes sending on the neighbor send queue if the neighbor is disconnected
+* Fixes `BufferedConnection`'s read and written bytes to be atomic
+
 # v0.1.0 - 2020-01-31
 
 > Note that this release is a complete breaking change, therefore node operators are instructed to upgrade.
diff --git a/plugins/cli/plugin.go b/plugins/cli/plugin.go
index 0b1937b5..8fbaeab0 100644
--- a/plugins/cli/plugin.go
+++ b/plugins/cli/plugin.go
@@ -12,7 +12,7 @@ import (
 
 const (
 	// AppVersion version number
-	AppVersion = "v0.1.0"
+	AppVersion = "v0.1.1"
 	// AppName app code name
 	AppName = "GoShimmer"
 )
-- 
GitLab