Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused release_date from Hugo config #2042

Merged
merged 3 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelogs/internal/newsfragments/2042.clarification
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Remove unused `release_date` from Hugo config.
3 changes: 1 addition & 2 deletions config/_default/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,9 @@ 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"
# release_date = "December 19, 2024"

# User interface configuration
[params.ui]
Expand Down
4 changes: 0 additions & 4 deletions meta/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
Loading