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 20:27:26 -0700
commit7dcc2f5a587c83935a98ab7b309d89478972fdc1 (patch)
treedcaee3974c5e552b167f8cba9b77bd55ff1d6508
parenta9263b94022e74ec23c63c44bad2048f080fc202 (diff)
downloadchef-7dcc2f5a587c83935a98ab7b309d89478972fdc1.tar.gz
Fix the announce task to use the new Chef Infra Client name
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 5a0cc3244c..1e185dc8c9 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -296,7 +296,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