From f41dc7fa0bd8d9f27ea07212271a0b6cf01a6f71 Mon Sep 17 00:00:00 2001 From: Michael Sutton Date: Mon, 19 Feb 2024 11:58:40 +0200 Subject: [PATCH] Bump version to 0.12.17 (#2268) * Bump version to 0.12.17 * changelog --- changelog.txt | 5 +++++ version/version.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 75982a9ce3..a1b036d026 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +Kaspad v0.12.17 - 2024-02-19 +=========================== + +* Wallet-related improvements and fixes (#2253, #2257, #2258, #2262) + Kaspad v0.12.16 - 2023-12-25 =========================== diff --git a/version/version.go b/version/version.go index f7bbbb1da4..31ba813c7e 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs const ( appMajor uint = 0 appMinor uint = 12 - appPatch uint = 16 + appPatch uint = 17 ) // appBuild is defined as a variable so it can be overridden during the build