From 490c214516fff7a4032fd131782ce46efb45e3e6 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 3 Apr 2014 14:52:08 -0400 Subject: [PATCH] LP#1302113: define a file for storing lists of folks to acknowledge in the release notes If a file called _acknowlegments is present in the docs/RELEASE_NOTES_NEXT directory, its contents will be appended to the end of the release notes under an "Acknowledgments" heading when create_release_notes.sh is run. Signed-off-by: Galen Charlton Signed-off-by: Dan Wells --- docs/RELEASE_NOTES_NEXT/README | 3 +++ docs/RELEASE_NOTES_NEXT/create_release_notes.sh | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/docs/RELEASE_NOTES_NEXT/README b/docs/RELEASE_NOTES_NEXT/README index ee91494058..3ba14b18e6 100644 --- a/docs/RELEASE_NOTES_NEXT/README +++ b/docs/RELEASE_NOTES_NEXT/README @@ -8,3 +8,6 @@ functionality. The name of the file should match the feature. No numbering, etc. is required. With each release, the contents of this directory will be appended to the release notes and removed from this directory. +The special file _acknowledgements is meant for acknowledging contributors +to the upcoming version of Evergreen. The names should be cleared in the +master branch at the beginning of each release cycle. diff --git a/docs/RELEASE_NOTES_NEXT/create_release_notes.sh b/docs/RELEASE_NOTES_NEXT/create_release_notes.sh index bb546e8e47..79ab28a17e 100755 --- a/docs/RELEASE_NOTES_NEXT/create_release_notes.sh +++ b/docs/RELEASE_NOTES_NEXT/create_release_notes.sh @@ -58,3 +58,10 @@ if [ "_$files" != "_" ]; then done fi +if [ -f _acknowledgments ]; then + echo >> $outfile + echo "Acknowledgments" >> $outfile + echo "---------------" >> $outfile + cat _acknowledgments >> $outfile + echo >> $outfile +fi -- 2.11.0