diff --git a/CHANGES.md b/CHANGES.md index 3e8c7157e..07e09480a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Changelog +## Dendrite 0.6.2 (2022-02-04) + +### Fixes + +* Resolves an issue where the key change consumer in the keyserver could consume extreme amounts of CPU + ## Dendrite 0.6.1 (2022-02-04) ### Features diff --git a/internal/version.go b/internal/version.go index 0e9b73637..de0b7c8c3 100644 --- a/internal/version.go +++ b/internal/version.go @@ -17,7 +17,7 @@ var build string const ( VersionMajor = 0 VersionMinor = 6 - VersionPatch = 1 + VersionPatch = 2 VersionTag = "" // example: "rc1" )