From 24e0f6fcab1550d8c1eb5f30e825feeabcb5bee8 Mon Sep 17 00:00:00 2001 From: Mark Young Date: Wed, 20 Dec 2023 14:36:10 +0000 Subject: [PATCH] [ruby/net-protocol] Provide a 'Changelog' link on rubygems.org/gems/net-protocol By providing a 'changelog_uri' in the metadata of the gemspec a 'Changelog' link will be shown on https://rubygems.org/gems/net-protocol 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/net-protocol/commit/46e78a2a0a --- lib/net/net-protocol.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/net/net-protocol.gemspec b/lib/net/net-protocol.gemspec index 29ad2504ebce90..f9fd83f12b05f2 100644 --- a/lib/net/net-protocol.gemspec +++ b/lib/net/net-protocol.gemspec @@ -21,6 +21,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" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git.