diff --git a/CHANGELOG.md b/CHANGELOG.md index 98c08d2e..ee96669e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,18 @@ -## unreleased +## v0.14.0 (2023-02-16) -* **Breaking change:** Refactored the HTML parser `Context` to have more data. -* Fixed escaping path components when forming matrix.to URLs or `matrix:` URIs. -* Bumped default timeouts for decrypting incoming messages. -* Added `notifications` key to `PowerLevelEventContent`. -* Added `RawArgs` to bridge commands to allow accessing non-split input. -* Added `ReplyAdvanced` to bridge commands to allow setting markdown settings. -* Added `SyncMap` utility as a simple generic wrapper for a map with a mutex. -* Added `ReturnableOnce` utility as a wrapper for `sync.Once` with a return value. -* Changed `SetEdit` to cut off edit fallback if the message is long. +* **Breaking change *(format)*** Refactored the HTML parser `Context` to have + more data. +* *(id)* Fixed escaping path components when forming matrix.to URLs + or `matrix:` URIs. +* *(bridge)* Bumped default timeouts for decrypting incoming messages. +* *(bridge)* Added `RawArgs` to commands to allow accessing non-split input. +* *(bridge)* Added `ReplyAdvanced` to commands to allow setting markdown + settings. +* *(event)* Added `notifications` key to `PowerLevelEventContent`. +* *(event)* Changed `SetEdit` to cut off edit fallback if the message is long. +* *(util)* Added `SyncMap` as a simple generic wrapper for a map with a mutex. +* *(util)* Added `ReturnableOnce` as a wrapper for `sync.Once` with a return + value. ## v0.13.0 (2023-01-16) diff --git a/version.go b/version.go index 0655f3a7..e305c398 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package mautrix -const Version = "v0.13.0" +const Version = "v0.14.0" var DefaultUserAgent = "mautrix-go/" + Version