mirror of
https://github.com/coredns/coredns.git
synced 2025-10-27 08:14:18 -04:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user