Prepare release: (#3614)

* run Makefile.doc to update to the latest
* add prs and authors to Makefile.release to aid in creating release
  notes. And update the comments in the makefile.
* add 1.6.7 release notes.

Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben
2020-01-23 16:06:52 +01:00
committed by Yong Tang
parent 166ea10780
commit ff981b1d69
5 changed files with 74 additions and 11 deletions

View File

@@ -8,10 +8,12 @@
# These are published on coredns.io. For example see: notes/coredns-1.5.1.md
#
# Getting the authors for this release is done with the following command line
# See the 'authors' target.
#
# git log --pretty=format:'%an' v$(VERSION)..master | sort -u
# git log --pretty=format:'%an' $(git describe --tags --abbrev=0)..master | sort -u
#
# Getting all pull requests merged since the last tag can be done with this "oneliner"
# See the 'prs' target.
#
# % git log $(git describe --tags --abbrev=0)..HEAD --oneline | awk ' { $1="";print } ' | sed 's/^ //' | sed -e 's|#\([0-9]\)|https://github.com/coredns/coredns/pull/\1|'
#
@@ -162,3 +164,13 @@ version:
clean:
rm -rf release
rm -rf build
.PHONY: prs
prs:
git log $$(git describe --tags --abbrev=0)..HEAD --oneline | awk ' { $$1="";print } ' | sed 's/^ //' | sed -e 's|#\([0-9]\)|https://github.com/coredns/coredns/pull/\1|' | \
grep -v '^build(deps)' | \
grep -v '^auto go mod tidy'
.PHONY: authors
authors:
git log --pretty=format:'%an' $$(git describe --tags --abbrev=0)..master | sort -u