From 227ef392bae97f83f821f79d4d20a568efafb8e5 Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Sat, 11 Dec 2021 20:55:25 +0200 Subject: [PATCH] Update version --- changelog.txt | 16 ++++++++++++++++ version/version.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 6822b3a1f..fca0e105f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,19 @@ +Kaspad v0.11.7 - 2021-12-11 +=========================== +Breaking changes: +* kaspawallet: show-address →new-address + show-addresses (#1870) + +Bug fixes: +* Fix numThreads using getAEAD instead of decryptMnemonic (#1859) +* Apply ResolveVirtual diffs to the UTXO index (#1868) + +Non-breaking changes: +* Ignore header mass in devnet and testnet (#1879) +* Remove unused args from CalcSubsidy (#1877) +* ExpectedHeaderPruningPoint fix (#1876) +* Changes to libkaspawallet to support Kaspaper (#1878) +* Get rid of genesis's UTXO dump (#1867) + Kaspad v0.11.2 - 2021-11-11 =========================== Bug fixes: diff --git a/version/version.go b/version/version.go index 4b3a24098..a946afaee 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 = 6 + appPatch uint = 7 ) // appBuild is defined as a variable so it can be overridden during the build