diff --git a/CHANGELOG.md b/CHANGELOG.md index d29cec60c..275f25fc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ + 3.0.1 (2023-03-21) +=================== + +Bugfixes +-------- + +- Fix GitHub OAuth button causing a "Could not find user which authorised this request" error . ([\#663](https://github.com/matrix-org/matrix-hookshot/issues/663)) +- Fix GitHub grant checker applying a different grant ID than the one it checks for. ([\#665](https://github.com/matrix-org/matrix-hookshot/issues/665)) + + +Internal Changes +---------------- + +- Small grammar fix. ([\#664](https://github.com/matrix-org/matrix-hookshot/issues/664)) +- Show a sensible error when a GitHub installation is pending. ([\#666](https://github.com/matrix-org/matrix-hookshot/issues/666)) + + 3.0.0 (2023-03-17) ================== diff --git a/changelog.d/663.bugfix b/changelog.d/663.bugfix deleted file mode 100644 index 75d13e63e..000000000 --- a/changelog.d/663.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix GitHub OAuth button causing a "Could not find user which authorised this request" error . \ No newline at end of file diff --git a/changelog.d/664.misc b/changelog.d/664.misc deleted file mode 100644 index ba77dbc8f..000000000 --- a/changelog.d/664.misc +++ /dev/null @@ -1 +0,0 @@ -Small grammar fix. diff --git a/changelog.d/665.bugfix b/changelog.d/665.bugfix deleted file mode 100644 index 706afda90..000000000 --- a/changelog.d/665.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix GitHub grant checker applying a different grant ID than the one it checks for. \ No newline at end of file diff --git a/changelog.d/666.misc b/changelog.d/666.misc deleted file mode 100644 index 37c606a81..000000000 --- a/changelog.d/666.misc +++ /dev/null @@ -1 +0,0 @@ -Show a sensible error when a GitHub installation is pending. \ No newline at end of file diff --git a/package.json b/package.json index 8b9701d09..23aa4ad34 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "3.0.0", + "version": "3.0.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",