diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-04-07 17:13:14 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-04-07 17:13:14 +0100 |
commit | 955e6eb307c78594fe9614f6a304dc521ba28d49 (patch) | |
tree | b8460c4e55de1dfee5e5c4c8afadb7b0099b2b05 | |
parent | 7902859bc1df63665ac329f8b47457a437589a87 (diff) |
Dendrite 0.8.1v0.8.1
-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.8.1 (2022-04-07) + +### Fixes + +* A bug which could result in the sync API deadlocking due to lock contention in the notifier has been fixed + ## Dendrite 0.8.0 (2022-04-07) ### Features diff --git a/internal/version.go b/internal/version.go index 6a565e23..5227a03b 100644 --- a/internal/version.go +++ b/internal/version.go @@ -17,7 +17,7 @@ var build string const ( VersionMajor = 0 VersionMinor = 8 - VersionPatch = 0 + VersionPatch = 1 VersionTag = "" // example: "rc1" ) |