From da7db4c9d8a8feb0b8e2f89fd761f7cfae40455e Mon Sep 17 00:00:00 2001 From: Mark Young Date: Tue, 31 Dec 2024 16:56:06 +0000 Subject: [PATCH] Provide a 'Changelog' link on rubygems.org/gems/rackup By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/rackup which makes it quick and easy for someone to check on the changes introduced with a new version. Details of this functionality can be found on https://guides.rubygems.org/specification-reference/#metadata --- rackup.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/rackup.gemspec b/rackup.gemspec index db8a289..6217470 100644 --- a/rackup.gemspec +++ b/rackup.gemspec @@ -13,6 +13,7 @@ Gem::Specification.new do |spec| spec.homepage = "https://github.com/rack/rackup" spec.metadata = { + "changelog_uri" => spec.homepage + "/blob/main/releases.md", "rubygems_mfa_required" => "true", "source_code_uri" => "https://github.com/rack/rackup.git", }