diff --git a/CHANGELOG.md b/CHANGELOG.md index 701da742..53a08ac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +Sygnal 0.10.1 (2021-08-16) +========================== + +This release only makes changes to the way Docker images are built and released; it is otherwise identical to 0.10.0. Administrators who do not use Docker as their installation method have no need to upgrade from 0.10.0. + + +Updates to the Docker image +--------------------------- + +- Fix the docker image build from failing due to `git` not being installed. This issue was introduced in v0.10.0. ([\#246](https://github.com/matrix-org/sygnal/issues/246)) +- CI now checks that the Docker image still builds after the Dockerfile is modified. ([\#248](https://github.com/matrix-org/sygnal/issues/248)) +- Automatically build the Docker image for each release and push it to Docker Hub using GitHub Actions. ([\#249](https://github.com/matrix-org/sygnal/issues/249)) + + +Internal Changes +---------------- + +- Add a lint script (scripts-dev/lint.sh) for developers. ([\#243](https://github.com/matrix-org/sygnal/issues/243)) +- Add more comprehensive Newsfile (changelog fragment) checks in CI. ([\#250](https://github.com/matrix-org/sygnal/issues/250)) + + Sygnal 0.10.0 (2021-08-09) ========================== diff --git a/changelog.d/243.misc b/changelog.d/243.misc deleted file mode 100644 index 78bfe562..00000000 --- a/changelog.d/243.misc +++ /dev/null @@ -1 +0,0 @@ -Add a lint script (scripts-dev/lint.sh) for developers. diff --git a/changelog.d/246.docker b/changelog.d/246.docker deleted file mode 100644 index ad1ed05d..00000000 --- a/changelog.d/246.docker +++ /dev/null @@ -1 +0,0 @@ -Fix the docker image build from failing due to `git` not being installed. This issue was introduced in v0.10.0. diff --git a/changelog.d/248.docker b/changelog.d/248.docker deleted file mode 100644 index aaa23983..00000000 --- a/changelog.d/248.docker +++ /dev/null @@ -1 +0,0 @@ -CI now checks that the Docker image still builds after the Dockerfile is modified. diff --git a/changelog.d/249.docker b/changelog.d/249.docker deleted file mode 100644 index cb6e9cce..00000000 --- a/changelog.d/249.docker +++ /dev/null @@ -1 +0,0 @@ -Automatically build the Docker image for each release and push it to Docker Hub using GitHub Actions. diff --git a/changelog.d/250.misc b/changelog.d/250.misc deleted file mode 100644 index 1fa25bf7..00000000 --- a/changelog.d/250.misc +++ /dev/null @@ -1 +0,0 @@ -Add more comprehensive Newsfile (changelog fragment) checks in CI.