From 1addb3955c456b01bb029b30dd6343298da0729d Mon Sep 17 00:00:00 2001 From: Mark Young Date: Thu, 21 Dec 2023 10:13:49 +0000 Subject: [PATCH] [ruby/psych] Provide a 'Changelog' link on rubygems.org/gems/psych By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/psych 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/psych/commit/28ef10edcf --- ext/psych/psych.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/psych/psych.gemspec b/ext/psych/psych.gemspec index 34f70095d3..a3fc53a8b9 100644 --- a/ext/psych/psych.gemspec +++ b/ext/psych/psych.gemspec @@ -76,5 +76,5 @@ DESCRIPTION end s.metadata['msys2_mingw_dependencies'] = 'libyaml' - + s.metadata['changelog_uri'] = s.homepage + '/releases' end