From fe09357ee6c7cdee699249bf6255cf1873ce32ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sun, 22 Dec 2024 04:11:05 +0100 Subject: [PATCH 1/3] Remove release_date from Hugo config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems unnecessary because it is not used anywhere. Signed-off-by: Kévin Commaille --- config/_default/hugo.toml | 1 - meta/releasing.md | 4 ---- 2 files changed, 5 deletions(-) diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index 6a95c9bba..d49e63406 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -68,7 +68,6 @@ current_version_url = "https://spec.matrix.org/latest" # of the spec. CI will set these values here automatically when a release git tag (i.e `v1.5`) is created. # major = "1" # minor = "13" -# release_date = "December 19, 2024" # User interface configuration [params.ui] diff --git a/meta/releasing.md b/meta/releasing.md index eb2c16b79..bc5885923 100644 --- a/meta/releasing.md +++ b/meta/releasing.md @@ -72,9 +72,6 @@ release. # and `minor = "2"` major = "1" minor = "2" - - # Today's date. Please use the format implied here for consistency. - release_date = "October 01, 2021" ``` 3. Commit the changes. 4. Generate the changelog. @@ -102,7 +99,6 @@ release. current_version_url = "https://spec.matrix.org/latest" # major = "1" # minor = "2" - # release_date = "October 01, 2021" ``` 11. Push pending commits and ensure the unstable spec updates accordingly from the GitHub Actions pipeline. From a33c1b710da380720f1d8fb298a485aca648ca2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sun, 22 Dec 2024 04:13:57 +0100 Subject: [PATCH 2/3] Remove erroneous sentence from Hugo config docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The version is updated manually during the release (see /meta/releasing.md), not by CI. Signed-off-by: Kévin Commaille --- config/_default/hugo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml index d49e63406..84362b3b5 100644 --- a/config/_default/hugo.toml +++ b/config/_default/hugo.toml @@ -65,7 +65,7 @@ status = "unstable" # A URL pointing to the latest, stable release of the spec. To be shown in the unstable version warning banner. current_version_url = "https://spec.matrix.org/latest" # The following is used when status = "stable", and is displayed in various UI elements on a released version -# of the spec. CI will set these values here automatically when a release git tag (i.e `v1.5`) is created. +# of the spec. # major = "1" # minor = "13" From e22ea5847b1eb621b4bca8f147bc7fc77d80482a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sun, 22 Dec 2024 13:03:19 +0100 Subject: [PATCH 3/3] Add changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- changelogs/internal/newsfragments/2042.clarification | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelogs/internal/newsfragments/2042.clarification diff --git a/changelogs/internal/newsfragments/2042.clarification b/changelogs/internal/newsfragments/2042.clarification new file mode 100644 index 000000000..4abe8e4e3 --- /dev/null +++ b/changelogs/internal/newsfragments/2042.clarification @@ -0,0 +1 @@ +Remove unused `release_date` from Hugo config.