diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-02-04 17:49:01 +0000 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-02-04 17:49:01 +0000 |
commit | 908d881a6e2049ab150f58c0697773656fc27a98 (patch) | |
tree | 3ac33254c5dd961bd2b272b25d51887f85897240 | |
parent | 00cbe75150cdeed263677a33be12c0c2df078bcb (diff) |
Version 0.6.2v0.6.2
-rw-r--r-- | CHANGES.md | 6 | ||||
-rw-r--r-- | internal/version.go | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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 0e9b7363..de0b7c8c 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" ) |