Skip to content

Commit

Permalink
Bump version to v0.15.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Mar 15, 2023
1 parent 7b3389a commit fb2c4bf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
23 changes: 16 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
## v0.15.0 (unreleased)

* *(client)* Changed request logging to log durations as floats instead of strings.
* *(bridge)* Changed zerolog to use nanosecond instead of second precision timestamps.
* *(crypto)* Added message index to log after encrypting/decrypting megolm events.
* *(sqlstatestore)* Fixed warning log for rooms that don't have encryption enabled.
* **Breaking change *(appservice)*** Removed `Load()` and `AppService.Init()` functions.
The struct should just be created with `Create()` and the relevant fields should
be filled manually.
### beta.3 (2023-03-15)

* **Breaking change *(appservice)*** Removed `Load()` and `AppService.Init()`
functions. The struct should just be created with `Create()` and the relevant
fields should be filled manually.
* **Breaking change *(appservice)*** Removed public `HomeserverURL` field and
replaced it with a `SetHomeserverURL` method.
* *(appservice)* Added support for unix sockets for homeserver URL and
appservice HTTP server.
* *(client)* Changed request logging to log durations as floats instead of
strings (using zerolog's `Dur()`, so the exact output can be configured).
* *(bridge)* Changed zerolog to use nanosecond precision timestamps.
* *(crypto)* Added message index to log after encrypting/decrypting megolm
events, and when failing to decrypt due to duplicate index.
* *(sqlstatestore)* Fixed warning log for rooms that don't have encryption
enabled.

### beta.2 (2023-03-02)

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package mautrix

const Version = "v0.15.0-beta.2"
const Version = "v0.15.0-beta.3"

var DefaultUserAgent = "mautrix-go/" + Version

0 comments on commit fb2c4bf

Please sign in to comment.