From 14b2bcbd8162ffafbcc53f5163cfe92bb3b556d7 Mon Sep 17 00:00:00 2001 From: Michael Sutton Date: Thu, 30 Dec 2021 18:37:51 +0200 Subject: [PATCH] Update to version v0.11.9 plus changelog update (#1919) --- changelog.txt | 17 +++++++++++++++++ version/version.go | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index cbc3d1bda..4440a5044 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,20 @@ +Kaspad v0.11.9 - 2021-12-30 +=========================== +Breaking changes: +* Implement the new monetary policy. Breaking change effective only in ~4 months (#1892) + +Bug fixes: +* Fix two pruning proof IBD crash bugs (#1913) +* Fix UTXO index bug showing wrong wallet balance (#1891) + +Non-breaking changes: +* Address search: cleanup repetitively-offline addresses and use randomization weighted by connection failures (#1899, #1916) +* New DNS seeders and removal of offline one (#1901, #1910, #1918) +* Add request balance by address to kaspactl (#1885) +* Wallet: show balance by addresses (#1904) +* Reject outdated non-DAA blocks submitted via RPC (#1914) +* Add a profile option to kaspawallet daemon (#1854) + Kaspad v0.11.8 - 2021-12-13 =========================== Bug fixes: diff --git a/version/version.go b/version/version.go index 97bc4e3b5..c9a79c1bd 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 = 8 + appPatch uint = 9 ) // appBuild is defined as a variable so it can be overridden during the build