diff --git a/changelog.txt b/changelog.txt index b59da47e9c..75982a9ce3 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,25 @@ +Kaspad v0.12.16 - 2023-12-25 +=========================== + +* Adapt wallet UTXO selection to dust patch (#2254) + +Kaspad v0.12.15 - 2023-12-16 +=========================== + +* Update ECDSA address test to use a valid public key (#2202) +* Fix off by small amounts in sent amount kaspa (#2220) +* Use removeRedeemers correctly by (#2235) +* Fix windows asset building by increasing go version (#2245) +* Added a mainnet dnsseeder (#2247) +* Fix extract atomic swap data pushes (#2203) +* Adapt kaspawallet to support testnet 11 (#2211) +* Fix type detection in RemoveInvalidTransactions (#2252) + +Kaspad v0.12.14 - 2023-09-26 +=========================== + +* Anti-spam measurements against dust attack (#2223) + Kaspad v0.12.13 - 2023-03-06 =========================== diff --git a/version/version.go b/version/version.go index 8224f7faf6..f7bbbb1da4 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 = 15 + appPatch uint = 16 ) // appBuild is defined as a variable so it can be overridden during the build