forked from MirrorHub/mautrix-whatsapp
Bump version to v0.2.4
This commit is contained in:
parent
e215850fcf
commit
79648ea9ec
4 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
# unreleased
|
# v0.2.4 (2022-02-16)
|
||||||
|
|
||||||
* Added tracking for incoming events from the primary device to warn the user
|
* Added tracking for incoming events from the primary device to warn the user
|
||||||
if their phone is offline for too long.
|
if their phone is offline for too long.
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
* Added support for bridging audio message waveforms in both directions.
|
* Added support for bridging audio message waveforms in both directions.
|
||||||
* Added support for sending URL previews to WhatsApp (both custom and autogenerated).
|
* Added support for sending URL previews to WhatsApp (both custom and autogenerated).
|
||||||
* Updated formatter to get Matrix user displayname when converting WhatsApp mentions.
|
* Updated formatter to get Matrix user displayname when converting WhatsApp mentions.
|
||||||
* Fixed some issues with read receipt bridging
|
* Fixed some issues with read receipt bridging.
|
||||||
* Fixed `!wa open` not working with new-style group IDs.
|
* Fixed `!wa open` not working with new-style group IDs.
|
||||||
* Fixed panic in disappearing message handling code if a portal is deleted with
|
* Fixed panic in disappearing message handling code if a portal is deleted with
|
||||||
messages still inside.
|
messages still inside.
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -17,7 +17,7 @@ require (
|
||||||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
||||||
maunium.net/go/mauflag v1.0.0
|
maunium.net/go/mauflag v1.0.0
|
||||||
maunium.net/go/maulogger/v2 v2.3.2
|
maunium.net/go/maulogger/v2 v2.3.2
|
||||||
maunium.net/go/mautrix v0.10.11-0.20220215142712-441b0812745a
|
maunium.net/go/mautrix v0.10.11
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
|
4
go.sum
4
go.sum
|
@ -201,5 +201,5 @@ maunium.net/go/mauflag v1.0.0 h1:YiaRc0tEI3toYtJMRIfjP+jklH45uDHtT80nUamyD4M=
|
||||||
maunium.net/go/mauflag v1.0.0/go.mod h1:nLivPOpTpHnpzEh8jEdSL9UqO9+/KBJFmNRlwKfkPeA=
|
maunium.net/go/mauflag v1.0.0/go.mod h1:nLivPOpTpHnpzEh8jEdSL9UqO9+/KBJFmNRlwKfkPeA=
|
||||||
maunium.net/go/maulogger/v2 v2.3.2 h1:1XmIYmMd3PoQfp9J+PaHhpt80zpfmMqaShzUTC7FwY0=
|
maunium.net/go/maulogger/v2 v2.3.2 h1:1XmIYmMd3PoQfp9J+PaHhpt80zpfmMqaShzUTC7FwY0=
|
||||||
maunium.net/go/maulogger/v2 v2.3.2/go.mod h1:TYWy7wKwz/tIXTpsx8G3mZseIRiC5DoMxSZazOHy68A=
|
maunium.net/go/maulogger/v2 v2.3.2/go.mod h1:TYWy7wKwz/tIXTpsx8G3mZseIRiC5DoMxSZazOHy68A=
|
||||||
maunium.net/go/mautrix v0.10.11-0.20220215142712-441b0812745a h1:qemTkoULb98wqW1CrV0qD1SQZ4rQw6HgmIuzYyJ3N64=
|
maunium.net/go/mautrix v0.10.11 h1:u3D5+Ko7Pk0ruVFUAgjfk5E6U5Ys9VVObEGrytr0Hk4=
|
||||||
maunium.net/go/mautrix v0.10.11-0.20220215142712-441b0812745a/go.mod h1:Ynac6y32yvdJC8YiYvWjWp6u1WjVTNq+JssC+07ZZWw=
|
maunium.net/go/mautrix v0.10.11/go.mod h1:Ynac6y32yvdJC8YiYvWjWp6u1WjVTNq+JssC+07ZZWw=
|
||||||
|
|
2
main.go
2
main.go
|
@ -64,7 +64,7 @@ var (
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// Version is the version number of the bridge. Changed manually when making a release.
|
// Version is the version number of the bridge. Changed manually when making a release.
|
||||||
Version = "0.2.3"
|
Version = "0.2.4"
|
||||||
// WAVersion is the version number exposed to WhatsApp. Filled in init()
|
// WAVersion is the version number exposed to WhatsApp. Filled in init()
|
||||||
WAVersion = ""
|
WAVersion = ""
|
||||||
// VersionString is the bridge version, plus commit information. Filled in init() using the build-time values.
|
// VersionString is the bridge version, plus commit information. Filled in init() using the build-time values.
|
||||||
|
|
Loading…
Reference in a new issue