From 47a6f0313b14ce1b9601322dda3acf6461b1684f Mon Sep 17 00:00:00 2001 From: Mark Young Date: Wed, 20 Dec 2023 14:44:09 +0000 Subject: [PATCH] Provide a 'Changelog' link on rubygems.org/gems/timeout By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/timeout 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/ --- timeout.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/timeout.gemspec b/timeout.gemspec index 258517c..5449494 100644 --- a/timeout.gemspec +++ b/timeout.gemspec @@ -20,6 +20,7 @@ Gem::Specification.new do |spec| spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage + spec.metadata["changelog_uri"] = spec.homepage + "/releases" spec.required_ruby_version = '>= 2.6.0'