From 4a560f25a60e876b58d2643ca6eb7e07525e76cc Mon Sep 17 00:00:00 2001 From: Michael Sutton Date: Thu, 27 Jan 2022 21:53:05 +0200 Subject: [PATCH] Update changelog and version number for v0.11.11 (#1935) --- changelog.txt | 4 ++++ version/version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 90845f29e..c97cb7be3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +Kaspad v0.11.11 - 2022-01-27 +=========================== +* Fix for rare consensus bug regarding DAA window order. The bug only affected IBD from scratch and only today (#1934) + Kaspad v0.11.10 - 2022-01-27 =========================== * Add monitoring of heap and save heap profile if size is over some limit (#1932) diff --git a/version/version.go b/version/version.go index 6b84feca6..80a2cb4ae 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs const ( appMajor uint = 0 appMinor uint = 11 - appPatch uint = 10 + appPatch uint = 11 ) // appBuild is defined as a variable so it can be overridden during the build