aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Alexander <neilalexander@users.noreply.github.com>2021-08-24 15:03:28 +0100
committerNeil Alexander <neilalexander@users.noreply.github.com>2021-08-24 15:03:28 +0100
commit037ff4fb2364cbee7a3a9a856cd2a711f5398682 (patch)
treefd0bd1be4ddfd37a3b34d797bfd8e67262b17004
parent4b0cc32af29a6292ea11b93800effb26370613c1 (diff)
Version 0.5.0v0.5.0
-rw-r--r--CHANGES.md16
-rw-r--r--internal/version.go2
2 files changed, 17 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 8207d484..3e0db8c3 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,21 @@
# Changelog
+## Dendrite 0.5.0 (2021-08-24)
+
+### Features
+
+* Support for serverside key backups has been added, allowing your E2EE keys to be backed up and to be restored after logging out or when logging in from a new device
+* Experimental support for cross-signing has been added, allowing verifying your own device keys and verifying other user's public keys
+* Dendrite can now send logs to a TCP syslog server by using the `syslog` logger type (contributed by [sambhavsaggi](https://github.com/sambhavsaggi))
+* Go 1.15 is now the minimum supported version for Dendrite
+
+### Fixes
+
+* Device keys are now cleaned up from the keyserver when the user API removes a device session
+* The `M_ROOM_IN_USE` error code is now returned when a room alias is already taken (contributed by [nivekuil](https://github.com/nivekuil))
+* A bug in the state storage migration has been fixed where room create events had incorrect state snapshots
+* A bug when deactivating accounts caused by only reading the deprecated username field has been fixed
+
## Dendrite 0.4.1 (2021-07-26)
### Features
diff --git a/internal/version.go b/internal/version.go
index 6ba1f13a..cdda60e2 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -18,7 +18,7 @@ const (
VersionMajor = 0
VersionMinor = 5
VersionPatch = 0
- VersionTag = "rc1" // example: "rc1"
+ VersionTag = "" // example: "rc1"
)
func VersionString() string {