diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 74b31ce9..634a4ec0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,44 @@ This is the changelog of MatrixCtl. You can find the issue tracker on .. towncrier release notes start +0.11.3 (2021-11-16) +=================== + +Features & Improvements +----------------------- + +- Add ``is-admin`` addon to determine is a user is an server admin. (`#252 + `_) +- Add ``set-admin`` addon to promote/demote users to/from homeserver admin + (`#254 `_) +- Add make-room-admin addon (`#265 + `_) +- Add ``get-event-context`` addon. (`#267 + `_) +- Add ``-f|--force`` switch to ``purge-history`` to answer all questions with + ``yes``. (`#271 `_) +- Add ``-e|--empty`` switch argument to ``rooms``, to only show empty rooms. + (`#273 `_) +- Add ``purge-remote-media`` addon. (`#275 + `_) +- ``delroom`` now uses the "Delete Room API" instead of the old "Purge Room + API", which id deprecated. (`#277 + `_) +- Add ``delete-local-media`` addon. (`#278 + `_) +- Debloat ``matrixctl --help`` (`#281 + `_) + + +Miscellaneous +------------- + +- Remove dependency ``single_source`` (`#245 + `_) +- Generate the release body with a script while running the release action. + (`#284 `_) + + 0.11.2 (2021-09-26) =================== diff --git a/news/245.misc b/news/245.misc deleted file mode 100644 index c61e6b23..00000000 --- a/news/245.misc +++ /dev/null @@ -1 +0,0 @@ -Remove dependency ``single_source`` diff --git a/news/252.feature b/news/252.feature deleted file mode 100644 index 5762d343..00000000 --- a/news/252.feature +++ /dev/null @@ -1 +0,0 @@ -Add ``is-admin`` addon to determine is a user is an server admin. diff --git a/news/254.feature b/news/254.feature deleted file mode 100644 index df0bb11b..00000000 --- a/news/254.feature +++ /dev/null @@ -1 +0,0 @@ -Add ``set-admin`` addon to promote/demote users to/from homeserver admin diff --git a/news/265.feature b/news/265.feature deleted file mode 100644 index a5323d48..00000000 --- a/news/265.feature +++ /dev/null @@ -1 +0,0 @@ -Add make-room-admin addon diff --git a/news/267.feature b/news/267.feature deleted file mode 100644 index b93dfefe..00000000 --- a/news/267.feature +++ /dev/null @@ -1 +0,0 @@ -Add `get-event-context` addon. diff --git a/news/271.feature b/news/271.feature deleted file mode 100644 index 3d31c8b4..00000000 --- a/news/271.feature +++ /dev/null @@ -1 +0,0 @@ -Add ``-f|--force`` switch to ``purge-history`` to answer all questions with ``yes``. diff --git a/news/273.feature b/news/273.feature deleted file mode 100644 index a13f039a..00000000 --- a/news/273.feature +++ /dev/null @@ -1 +0,0 @@ -Add ``-e|--empty`` switch argument to ``rooms``, to only show empty rooms. diff --git a/news/275.feature b/news/275.feature deleted file mode 100644 index 8acd7ecc..00000000 --- a/news/275.feature +++ /dev/null @@ -1 +0,0 @@ -Add ``purge-remote-media`` addon. diff --git a/news/277.feature b/news/277.feature deleted file mode 100644 index be40e2ed..00000000 --- a/news/277.feature +++ /dev/null @@ -1 +0,0 @@ -``delroom`` now uses the "Delete Room API" instead of the old "Purge Room API", which id deprecated. diff --git a/news/278.feature b/news/278.feature deleted file mode 100644 index e55dde3f..00000000 --- a/news/278.feature +++ /dev/null @@ -1 +0,0 @@ -Add `delete-local-media` addon. diff --git a/news/281.feature b/news/281.feature deleted file mode 100644 index c2d2d82e..00000000 --- a/news/281.feature +++ /dev/null @@ -1 +0,0 @@ -Debloat ``matrixctl --help`` diff --git a/news/284.misc b/news/284.misc deleted file mode 100644 index 487f69ee..00000000 --- a/news/284.misc +++ /dev/null @@ -1 +0,0 @@ -Generate the release body with a script while running the release action. diff --git a/pyproject.toml b/pyproject.toml index 68f923b5..3f5cd9cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "matrixctl" -version = "0.11.2" +version = "0.11.3" description = "Control, manage, provision and deploy matrix homeservers." license = "GPL-3.0-or-later"