mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-12-13 09:03:10 +01:00
Bump version to v0.8.2
This commit is contained in:
parent
96092af492
commit
81028cf2c2
4 changed files with 9 additions and 5 deletions
|
@ -1,8 +1,12 @@
|
|||
# unreleased
|
||||
# v0.8.2 (2023-02-16)
|
||||
|
||||
* Updated portal room power levels to always allow poll votes.
|
||||
* Fixed disappearing message timing being implemented incorrectly.
|
||||
* Fixed server rejecting messages not being handled as an error.
|
||||
* Fixed sent files not being downloadable on latest WhatsApp beta versions.
|
||||
* Fixed `sync space` command not syncing DMs into the space properly.
|
||||
* Added workaround for broken clients like Element iOS that can't render normal
|
||||
image messages correctly.
|
||||
|
||||
# v0.8.1 (2023-01-16)
|
||||
|
||||
|
|
2
go.mod
2
go.mod
|
@ -16,7 +16,7 @@ require (
|
|||
golang.org/x/net v0.6.0
|
||||
google.golang.org/protobuf v1.28.1
|
||||
maunium.net/go/maulogger/v2 v2.3.2
|
||||
maunium.net/go/mautrix v0.13.1-0.20230213133732-076b4c63a287
|
||||
maunium.net/go/mautrix v0.14.0
|
||||
)
|
||||
|
||||
require (
|
||||
|
|
4
go.sum
4
go.sum
|
@ -122,5 +122,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/maulogger/v2 v2.3.2 h1:1XmIYmMd3PoQfp9J+PaHhpt80zpfmMqaShzUTC7FwY0=
|
||||
maunium.net/go/maulogger/v2 v2.3.2/go.mod h1:TYWy7wKwz/tIXTpsx8G3mZseIRiC5DoMxSZazOHy68A=
|
||||
maunium.net/go/mautrix v0.13.1-0.20230213133732-076b4c63a287 h1:2wZ/A4wOo7NhgnqVosRiFw5h1/O37nLLULjbLPRqMuw=
|
||||
maunium.net/go/mautrix v0.13.1-0.20230213133732-076b4c63a287/go.mod h1:voJPvnTkA60rxBl6mvdPxcP7y7iY5w3d/K55IoX+2oY=
|
||||
maunium.net/go/mautrix v0.14.0 h1:kdQ06HzmMaLGZqmSh/ykDhp5C2gIREQL9TS8hY+FqLs=
|
||||
maunium.net/go/mautrix v0.14.0/go.mod h1:voJPvnTkA60rxBl6mvdPxcP7y7iY5w3d/K55IoX+2oY=
|
||||
|
|
2
main.go
2
main.go
|
@ -276,7 +276,7 @@ func main() {
|
|||
Name: "mautrix-whatsapp",
|
||||
URL: "https://github.com/mautrix/whatsapp",
|
||||
Description: "A Matrix-WhatsApp puppeting bridge.",
|
||||
Version: "0.8.1",
|
||||
Version: "0.8.2",
|
||||
ProtocolName: "WhatsApp",
|
||||
|
||||
CryptoPickleKey: "maunium.net/go/mautrix-whatsapp",
|
||||
|
|
Loading…
Reference in a new issue