diff options
author | 2020-03-24 16:26:01 +0100 | |
---|---|---|
committer | 2020-03-24 16:26:01 +0100 | |
commit | 1766568398e3120c85d44f5c6237a724248b652e (patch) | |
tree | 4ba548edfac49b8ff4901654bf0bbd969e8b7f9f /Makefile.release | |
parent | 187d0f3c71531fa3e0bcac826d0b66209e4ce5c4 (diff) | |
download | coredns-1766568398e3120c85d44f5c6237a724248b652e.tar.gz coredns-1766568398e3120c85d44f5c6237a724248b652e.tar.zst coredns-1766568398e3120c85d44f5c6237a724248b652e.zip |
Bump to version 1.6.9 (#3773)v1.6.9
See #3727 for the details. Copying release notes
verbatim to coredns-1.6.9.md and fix the release script (because
Makefile are stupid). Up version to 1.6.9 here as well.
Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'Makefile.release')
-rw-r--r-- | Makefile.release | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.release b/Makefile.release index 76517e0a0..95b881845 100644 --- a/Makefile.release +++ b/Makefile.release @@ -118,7 +118,7 @@ github-push: echo $$asset; \ curl -o /dev/null -X POST \ -H "Content-Type: application/gzip" \ - -H "Authorization: token ${GITHUB_ACCESS_TOKEN}" + -H "Authorization: token ${GITHUB_ACCESS_TOKEN}" \ --data-binary "@$$asset" \ "https://uploads.github.com/repos/$(GITHUB)/$(NAME)/releases/$(RELEASE)/assets?name=$${asset}" ; \ done ) @@ -129,7 +129,7 @@ github-push: echo $$asset; \ curl -o /dev/null -X POST \ -H "Content-Type: text/plain" \ - -H "Authorization: token ${GITHUB_ACCESS_TOKEN}" + -H "Authorization: token ${GITHUB_ACCESS_TOKEN}" \ --data-binary "@$$asset" \ "https://uploads.github.com/repos/$(GITHUB)/$(NAME)/releases/$(RELEASE)/assets?name=$${asset}" ; \ done ) |