diff --git a/changelog.txt b/changelog.txt index 18e572ef12..c3538c1228 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,14 @@ +Kaspad v0.12.12 - 2023-02-28 +=========================== + +* Rename last references to blockheight (#2089) +* Add code of conduct (#2183) +* Extend TestGetPreciseSigOps with more tests (#2188) +* Add Dockerfile to kaspawallet (#2187) +* Add `--send-all` to `kaspawallet send` command (#2181) +* Bump golang.org/x/text from 0.3.5 to 0.3.8 (#2190) +* Upgrade to go 1.19 (#2191) + Kaspad v0.12.11 - 2022-12-1 =========================== diff --git a/version/version.go b/version/version.go index b461619c0f..6b891559ce 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 = 11 + appPatch uint = 12 ) // appBuild is defined as a variable so it can be overridden during the build