summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-01-05 19:12:09 -0800
committerGitHub <noreply@github.com>2021-01-05 19:12:09 -0800
commit6e2f7446549d7d0e144dee583b119cdc38faeebe (patch)
treeaeb77cf03bc1bc155fd6d60eff53641bcd50ddf5
parentecbf0badb607e259ffbeb85ad653b252fb66c2ea (diff)
parent350bb031ae257c67f28dc69b7482221a251d65cd (diff)
downloadchef-6e2f7446549d7d0e144dee583b119cdc38faeebe.tar.gz
Merge pull request #10838 from chef/metadata_15
Add gemspec metadata
-rw-r--r--CHANGELOG.md3
-rw-r--r--chef.gemspec9
2 files changed, 12 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6a75abda0c..23455a8917 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,7 @@
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
+
+This changelog lists individual merged pull requests to Chef Infra Client and geared towards developers. For a list of significant changes per release see the [Chef Infra Client Release Notes](https://docs.chef.io/release_notes_client/).
+
<!-- latest_release 15.14.4 -->
## [v15.14.4](https://github.com/chef/chef/tree/v15.14.4) (2021-01-06)
diff --git a/chef.gemspec b/chef.gemspec
index 8842c9df82..2764571dff 100644
--- a/chef.gemspec
+++ b/chef.gemspec
@@ -62,4 +62,13 @@ Gem::Specification.new do |s|
Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } +
Dir.glob("*.gemspec") +
Dir.glob("tasks/rspec.rb")
+
+ s.metadata = {
+ "bug_tracker_uri" => "https://github.com/chef/chef/issues",
+ "changelog_uri" => "https://github.com/chef/chef/blob/master/CHANGELOG.md",
+ "documentation_uri" => "https://docs.chef.io/",
+ "homepage_uri" => "https://www.chef.io",
+ "mailing_list_uri" => "https://discourse.chef.io/",
+ "source_code_uri" => "https://github.com/chef/chef/",
+ }
end