diff --git a/CHANGELOG.md b/CHANGELOG.md index 8625da93..2e0f9b75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +1.7.2 (2022-06-08) +================== + +Features +-------- + +- Add support for GitHub enterprise. You can now specify the URL via `enterpriseUrl` in the config file. ([\#364](https://github.com/matrix-org/matrix-hookshot/issues/364)) +- Add ability for bridge admins to remove GitHub connections using the admin room. ([\#367](https://github.com/matrix-org/matrix-hookshot/issues/367)) + + +Bugfixes +-------- + +- Fix Github API URLs ([\#366](https://github.com/matrix-org/matrix-hookshot/issues/366)) + + +Improved Documentation +---------------------- + +- Add CONTRIBUTING.md guide. ([\#134](https://github.com/matrix-org/matrix-hookshot/issues/134)) +- Suggest using https for cloning hookshot, rather than git. ([\#355](https://github.com/matrix-org/matrix-hookshot/issues/355)) + + +Internal Changes +---------------- + +- Widgets now request the RequireClient permission to verify the users identity. ([\#370](https://github.com/matrix-org/matrix-hookshot/issues/370)) + + 1.7.1 (2022-05-23) ================== diff --git a/Cargo.lock b/Cargo.lock index 7f246fbb..db477075 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -147,7 +147,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "matrix-hookshot" -version = "1.3.0" +version = "1.7.2" dependencies = [ "contrast", "hex", diff --git a/Cargo.toml b/Cargo.toml index be3a4eb8..39f205d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-hookshot" -version = "1.3.0" +version = "1.7.2" edition = "2021" [lib] diff --git a/changelog.d/134.doc b/changelog.d/134.doc deleted file mode 100644 index 0b56ea90..00000000 --- a/changelog.d/134.doc +++ /dev/null @@ -1 +0,0 @@ -Add CONTRIBUTING.md guide. \ No newline at end of file diff --git a/changelog.d/355.doc b/changelog.d/355.doc deleted file mode 100644 index bd1dcce1..00000000 --- a/changelog.d/355.doc +++ /dev/null @@ -1 +0,0 @@ -Suggest using https for cloning hookshot, rather than git. diff --git a/changelog.d/364.feature b/changelog.d/364.feature deleted file mode 100644 index ed76832e..00000000 --- a/changelog.d/364.feature +++ /dev/null @@ -1 +0,0 @@ -Add support for GitHub enterprise. You can now specify the URL via `enterpriseUrl` in the config file. \ No newline at end of file diff --git a/changelog.d/366.bugfix b/changelog.d/366.bugfix deleted file mode 100644 index b1c6968d..00000000 --- a/changelog.d/366.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix Github API URLs diff --git a/changelog.d/367.feature b/changelog.d/367.feature deleted file mode 100644 index 85d8b1ae..00000000 --- a/changelog.d/367.feature +++ /dev/null @@ -1 +0,0 @@ -Add ability for bridge admins to remove GitHub connections using the admin room. \ No newline at end of file diff --git a/changelog.d/370.misc b/changelog.d/370.misc deleted file mode 100644 index c94eca4a..00000000 --- a/changelog.d/370.misc +++ /dev/null @@ -1 +0,0 @@ -Widgets now request the RequireClient permission to verify the users identity. \ No newline at end of file diff --git a/package.json b/package.json index 5c8f6562..323c6437 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "1.7.1", + "version": "1.7.2", "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",