From 8aa8a3e984437882f2e08a8e5ffddaa14e408df1 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Fri, 2 Aug 2024 20:14:05 -0700 Subject: [PATCH] Update changelog_uri in gemspec metadata to GitHub Releases The gem metadata published to Rubygems points to the CHANGELOG.md file, but this is no longer the official changelog of record. The file says: > Future changelogs have moved to GitHub Releases This commit updates the gemspec metadata to point to GitHub Releases so that future releases to Rubygems contain the correct URL. --- activeadmin.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activeadmin.gemspec b/activeadmin.gemspec index 1447ffa2232..cce7939d09d 100644 --- a/activeadmin.gemspec +++ b/activeadmin.gemspec @@ -20,7 +20,7 @@ Gem::Specification.new do |s| s.metadata = { "bug_tracker_uri" => "https://github.com/activeadmin/activeadmin/issues", - "changelog_uri" => "https://github.com/activeadmin/activeadmin/blob/master/CHANGELOG.md", + "changelog_uri" => "https://github.com/activeadmin/activeadmin/releases", "documentation_uri" => "https://activeadmin.info", "homepage_uri" => "https://activeadmin.info", "mailing_list_uri" => "https://groups.google.com/group/activeadmin",