From cb6a556927120eb998f2995dc7fa21e6232d117e Mon Sep 17 00:00:00 2001 From: Mark Young Date: Wed, 20 Dec 2023 14:25:32 +0000 Subject: [PATCH] [ruby/date] Provide a 'Changelog' link on rubygems.org/gems/date By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/date 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/ https://github.com/ruby/date/commit/2dea4c011d --- ext/date/date.gemspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/date/date.gemspec b/ext/date/date.gemspec index 660353ebc5..bd42b1518a 100644 --- a/ext/date/date.gemspec +++ b/ext/date/date.gemspec @@ -31,4 +31,6 @@ Gem::Specification.new do |s| s.email = [nil] s.homepage = "https://github.com/ruby/date" s.licenses = ["Ruby", "BSD-2-Clause"] + + s.metadata["changelog_uri"] = s.homepage + "/releases" end