From bd1420220a1c9f7ab253b2b120240351e9440146 Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Mon, 6 Mar 2023 17:12:35 +0200 Subject: [PATCH] Bump version to v0.12.13 (#2196) --- changelog.txt | 9 ++++++++- version/version.go | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index c3538c1228..b59da47e9c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,11 @@ -Kaspad v0.12.12 - 2023-02-28 +Kaspad v0.12.13 - 2023-03-06 +=========================== + +* Bump golang.org/x/crypto from 0.0.0-20210513164829-c07d793c2f9a to 0.1.0 (#2195) +* Bump golang.org/x/net from 0.0.0-20210405180319-a5a99cb37ef4 to 0.7.0 (#2194) +* Avoid sending transactions with no funds (#2193) + +Kaspad v0.12.12 - 2023-03-06 =========================== * Rename last references to blockheight (#2089) diff --git a/version/version.go b/version/version.go index 6b891559ce..c04cd9643b 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 = 12 + appPatch uint = 13 ) // appBuild is defined as a variable so it can be overridden during the build