summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-05-06 11:32:38 -0700
committerTim Smith <tsmith@chef.io>2019-05-06 11:32:38 -0700
commit70d0f56ab3bf8ff3c21437c9b66c5f6e2c13072a (patch)
treedfb4361662116cd6091be55efb036fb57a0977a2
parent6d0f8fc0370f9edb4c92b2c3345f15a894065116 (diff)
downloadchef-dep_bump_fix.tar.gz
Fix the announce task to use the new Chef Infra Client namedep_bump_fix
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--RELEASE_NOTES.md2
-rw-r--r--tasks/announce.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index ea1871d677..f6d05ff602 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -283,7 +283,7 @@ We removed the system_profile plugin because it incorrectly returned data on mod
We removed the Ohai::Util::Win32::GroupHelper helper class from Ohai. This class was intended for use internally in several Windows plugins, but it was never marked private in the codebase. If any of your Ohai plugins rely on this helper class, you will need to update your plugins for Ohai 15.
-# Chef Client Release Notes 14.11:
+# Chef Infra Client Release Notes 14.11:
## Updated Resources
diff --git a/tasks/announce.rb b/tasks/announce.rb
index f8c026f466..c898e80ed8 100644
--- a/tasks/announce.rb
+++ b/tasks/announce.rb
@@ -41,7 +41,7 @@ class ReleaseAnnouncement
end
def release_notes_from_file
- File.read("RELEASE_NOTES.md").match(/^# Chef Client Release Notes #{@maj_minor}:\n\n(.*)/m)[1]
+ File.read("RELEASE_NOTES.md").match(/^# Chef Infra Client Release Notes #{@maj_minor}:\n\n(.*)/m)[1]
end
end