diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 96dae7ca..0409476f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,29 @@ This is the changelog of MatrixCtl. You can find the issue tracker on .. towncrier release notes start +0.10.2 (2021-06-24) +=================== + +Features & Improvements +----------------------- + +- Add start/restart switch to the deploy subcommand to start/restart the server + right after the deployment. (`#132 + `_) +- Added the new command ``get-event``, which gets an event by ``event_id`` from + the Database and prints it as JSON. (`#139 + `_) + + +Miscellaneous +------------- + +- Rewritten API handler. (`#136 + `_) +- Fixed: Wrong version while developing in virtual environment. (`#141 + `_) + + 0.10.1 (2021-06-17) =================== diff --git a/news/132.feature b/news/132.feature deleted file mode 100644 index 0ef45f7c..00000000 --- a/news/132.feature +++ /dev/null @@ -1 +0,0 @@ -Add start/restart switch to the deploy subcommand to start/restart the server right after the deployment. diff --git a/news/136.misc b/news/136.misc deleted file mode 100644 index 3748c5a7..00000000 --- a/news/136.misc +++ /dev/null @@ -1 +0,0 @@ -Rewritten API handler. diff --git a/news/139.feature b/news/139.feature deleted file mode 100644 index e1295a7b..00000000 --- a/news/139.feature +++ /dev/null @@ -1 +0,0 @@ -Added the new command ``get-event``, which gets an event by ``event_id`` from the Database and prints it as JSON. diff --git a/news/141.misc b/news/141.misc deleted file mode 100644 index e89fb093..00000000 --- a/news/141.misc +++ /dev/null @@ -1 +0,0 @@ -Fixed: Wrong version while developing in virtual environment. diff --git a/pyproject.toml b/pyproject.toml index 396d3dea..a8c92345 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "matrixctl" -version = "0.10.1" +version = "0.10.2" description = "Controls a synapse oci-container instance via ansible" license = "GPL-3.0-or-later" readme = "README.md" @@ -165,9 +165,7 @@ filename = "CHANGELOG.rst" issue_format = "`#{issue} `_" directory = "news/" top_line = false -# name = "MatrixCtl" title_format = "{version} ({project_date})" # {name} -# start_string = ".. towncrier release notes start" all_bullets = true # make all fragments bullet points wrap = true # Wrap text to 79 characters template = "news/templates/default.rst"