diff --git a/changelog.txt b/changelog.txt index c4f73955c..1aa58a028 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,7 @@ +Kaspad v0.11.16 - 2022-04-05 +=========================== +* Don't skip wallet address with different cosigner index (#2007) + Kaspad v0.11.15 - 2022-04-05 =========================== * Add support for auto-compound in `kaspawallet send` (#1951) diff --git a/version/version.go b/version/version.go index 9c1cbdd08..4acdde4c5 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 = 15 + appPatch uint = 16 ) // appBuild is defined as a variable so it can be overridden during the build