Bump version to v0.12.1

This commit is contained in:
Tulir Asokan 2022-09-16 12:35:44 +03:00
commit 00f50706ad
2 changed files with 17 additions and 2 deletions

View file

@ -1,6 +1,21 @@
## v0.12.1 (unreleased)
## v0.12.1 (2022-09-16)
* Bumped minimum Go version to 1.18.
* Added `omitempty` for a bunch of fields in response structs to make them more
usable for server implementations.
* Added `util.RandomToken` to generate GitHub-style access tokens with checksums.
* Added utilities to call the push gateway API.
* Added `unread_notifications` and [MSC2654] `unread_count` fields to /sync
response structs.
* Implemented [MSC3870] for uploading and downloading media directly to/from an
external media storage like S3.
* Fixed dbutil database ownership checks on SQLite.
* Fixed typo in unauthorized encryption key withheld code
(`m.unauthorized` -> `m.unauthorised`).
* Fixed [MSC2409] support to have a separate field for to-device events.
[MSC2654]: https://github.com/matrix-org/matrix-spec-proposals/pull/2654
[MSC3870]: https://github.com/matrix-org/matrix-spec-proposals/pull/3870
## v0.12.0 (2022-08-16)

View file

@ -1,5 +1,5 @@
package mautrix
const Version = "v0.12.0"
const Version = "v0.12.1"
var DefaultUserAgent = "mautrix-go/" + Version