From 7d371d98cd61b2996f0d7903b04e2f0074b4d52a Mon Sep 17 00:00:00 2001 From: fynsta <63241108+fynsta@users.noreply.github.com> Date: Sat, 22 Jun 2024 16:15:56 +0200 Subject: [PATCH] Add changelog_uri to gemspec Supported here: https://guides.rubygems.org/specification-reference/#metadata Useful for running https://github.com/MaximeD/gem_updater --- elastic-apm.gemspec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/elastic-apm.gemspec b/elastic-apm.gemspec index 367ec7131..b0ebcc268 100644 --- a/elastic-apm.gemspec +++ b/elastic-apm.gemspec @@ -27,7 +27,10 @@ Gem::Specification.new do |spec| spec.summary = 'The official Elastic APM agent for Ruby' spec.homepage = 'https://github.com/elastic/apm-agent-ruby' - spec.metadata = { 'source_code_uri' => 'https://github.com/elastic/apm-agent-ruby' } + spec.metadata = { + 'source_code_uri' => 'https://github.com/elastic/apm-agent-ruby', + 'changelog_uri' => 'https://www.elastic.co/guide/en/apm/agent/ruby/current/release-notes.html' + } spec.license = 'Apache-2.0' spec.required_ruby_version = ">= 2.3.0"