diff --git a/CHANGELOG.md b/CHANGELOG.md index e8c8764ed..f1911b8de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +5.1.1 (2023-12-29) +================== + +Bugfixes +-------- + +- Fix widgets not loading when bound to the same listener as "webhooks". ([\#872](https://github.com/matrix-org/matrix-hookshot/issues/872)) + + 5.1.0 (2023-12-29) ================== diff --git a/Cargo.lock b/Cargo.lock index 31a7c8fec..39a984710 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -672,7 +672,7 @@ dependencies = [ [[package]] name = "matrix-hookshot" -version = "5.1.0" +version = "5.1.1" dependencies = [ "atom_syndication", "contrast", diff --git a/Cargo.toml b/Cargo.toml index 97ad1b25a..83abc29b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-hookshot" -version = "5.1.0" +version = "5.1.1" edition = "2021" [lib] diff --git a/changelog.d/872.bugfix b/changelog.d/872.bugfix deleted file mode 100644 index ac41d8a88..000000000 --- a/changelog.d/872.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix widgets not loading when bound to the same listener as "webhooks". diff --git a/package.json b/package.json index 9017656fc..984791ddf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "5.1.0", + "version": "5.1.1", "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", "main": "lib/app.js", "repository": "https://github.com/matrix-org/matrix-hookshot",