From a4669f3fb5c3515bffa1fb22caaa5fd56c73c2cc Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Wed, 6 Apr 2022 02:01:08 +0300 Subject: [PATCH] Bump version and update changelog (#2008) --- changelog.txt | 4 ++++ version/version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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