Skip to content
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
2 changes: 1 addition & 1 deletion hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ params:
hugo_version: 0.139.4
pagefind_version: 1.1.1
latest_version: 2.48.1
latest_relnote_url: https://raw.github.com/git/git/master/Documentation/RelNotes/2.48.1.txt
latest_relnote_url: https://raw.github.com/git/git/master/Documentation/RelNotes/2.48.1.adoc
latest_release_date: '2025-01-13'
macos_installer:
url: https://sourceforge.net/projects/git-osx-installer/files/git-2.33.0-intel-universal-mavericks.dmg/download?use_mirror=autoselect
Expand Down
2 changes: 1 addition & 1 deletion script/update-git-version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
config = YAML.load_file("hugo.yml")
config["params"] = {} if config["params"].nil?
config["params"]["latest_version"] = version
config["params"]["latest_relnote_url"] = "https://raw.github.com/git/git/master/Documentation/RelNotes/#{version}.txt"
config["params"]["latest_relnote_url"] = "https://raw.github.com/git/git/master/Documentation/RelNotes/#{version}.adoc"
config["params"]["latest_release_date"] = date.strftime("%Y-%m-%d")
yaml = YAML.dump(config).gsub(/ *$/, "")
File.write("hugo.yml", yaml)
Loading