diff --git a/CHANGELOG.md b/CHANGELOG.md
index b10d7fa5d2ce00684920515e70ae2b1ea5c4213f..b47ac3d505074a13dc05de4bd31b1ff815731503 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 0b1937b55e97dd17d752d925f27387844708b35a..8fbaeab0e65f804969aa69fc89ef4321ff7d47ac 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"
 )