From cddc1fa6b24465e99f036ddcf9b113dee5153209 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Mon, 11 Dec 2023 14:38:48 +0100 Subject: [PATCH] chore(release): update changelog and version to 0.13.4 --- CHANGELOG.md | 14 ++++++++++++++ version/version.go | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b63e7136c..0ee2d1966e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.13.4] - 2023-12-11 + +### Bug Fixes + +- Ordered map race condition (#708) + +### Performance + +- Increase web socket channels capacity (#709) + ## [0.13.3] - 2023-10-16 ### Bug Fixes @@ -5,6 +15,10 @@ - Issue with GMP not properly being linked on mac (#698) - Always propose with current app version (#697) +### Miscellaneous Tasks + +- Update changelog and version to 0.13.3 + ## [0.13.2] - 2023-10-09 ### Bug Fixes diff --git a/version/version.go b/version/version.go index 8e1bb184b4..58b28384fb 100644 --- a/version/version.go +++ b/version/version.go @@ -9,7 +9,7 @@ var ( const ( // TMVersionDefault is the used as the fallback version for Tenderdash // when not using git describe. It is formatted with semantic versioning. - TMVersionDefault = "0.13.3" + TMVersionDefault = "0.13.4" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.23.0"