diff --git a/CHANGELOG.md b/CHANGELOG.md index 52497aa6b..8bda7153d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +5.2.1 (2024-02-21) +================== + +Bugfixes +-------- + +- Fix Atom feeds being repeated in rooms once after an upgrade. ([\#901](https://github.com/matrix-org/matrix-hookshot/issues/901)) + + 5.2.0 (2024-02-21) ================== diff --git a/Cargo.lock b/Cargo.lock index 4d2eea7f0..247829c0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -669,7 +669,7 @@ dependencies = [ [[package]] name = "matrix-hookshot" -version = "5.2.0" +version = "5.2.1" dependencies = [ "atom_syndication", "contrast", diff --git a/Cargo.toml b/Cargo.toml index 7c70ab984..5475bb53a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-hookshot" -version = "5.2.0" +version = "5.2.1" edition = "2021" [lib] diff --git a/changelog.d/901.bugfix b/changelog.d/901.bugfix deleted file mode 100644 index 6bc32020b..000000000 --- a/changelog.d/901.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix Atom feeds being repeated in rooms once after an upgrade. diff --git a/package.json b/package.json index 1515ad958..68f75d734 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "5.2.0", + "version": "5.2.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",