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