From e9d1333bc457bc22b1c94c9bcebf3000e8b2be0e Mon Sep 17 00:00:00 2001 From: shibayu36 Date: Wed, 4 Oct 2017 11:37:20 +0900 Subject: [PATCH] ready for next release and update changelogs. version: 0.21.0 --- CHANGELOG.md | 5 +++++ Makefile | 2 +- packaging/deb-v2/debian/changelog | 7 +++++++ packaging/deb/debian/changelog | 7 +++++++ ...kr_0.20.0.orig.tar.gz => mkr_0.21.0.orig.tar.gz} | Bin packaging/rpm/mkr-v2.spec | 3 +++ packaging/rpm/mkr.spec | 3 +++ version.go | 2 +- 8 files changed, 27 insertions(+), 2 deletions(-) rename packaging/{mkr_0.20.0.orig.tar.gz => mkr_0.21.0.orig.tar.gz} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c518d81..5072eeff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.21.0 (2017-10-04) + +* Use new API BaseURL #116 (astj) + + ## 0.20.0 (2017-09-27) * build with Go 1.9 #114 (astj) diff --git a/Makefile b/Makefile index a117c50e..e6a39f1e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN = mkr -VERSION = 0.20.0 +VERSION = 0.21.0 CURRENT_REVISION = $(shell git rev-parse --short HEAD) all: clean cross lint gofmt test rpm deb diff --git a/packaging/deb-v2/debian/changelog b/packaging/deb-v2/debian/changelog index ca19094d..2ceb7d7e 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.21.0-1.v2) stable; urgency=low + + * Use new API BaseURL (by astj) + + + -- mackerel Wed, 04 Oct 2017 11:37:20 +0900 + mkr (0.20.0-1.v2) stable; urgency=low * build with Go 1.9 (by astj) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index b58de239..e8d026cc 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.21.0-1) stable; urgency=low + + * Use new API BaseURL (by astj) + + + -- mackerel Wed, 04 Oct 2017 11:37:20 +0900 + mkr (0.20.0-1) stable; urgency=low * build with Go 1.9 (by astj) diff --git a/packaging/mkr_0.20.0.orig.tar.gz b/packaging/mkr_0.21.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.20.0.orig.tar.gz rename to packaging/mkr_0.21.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index a484125d..70cd669a 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -36,6 +36,9 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Wed Oct 04 2017 - 0.21.0 +- Use new API BaseURL (by astj) + * Wed Sep 27 2017 - 0.20.0 - build with Go 1.9 (by astj) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index bb346e90..ff1e588d 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -42,6 +42,9 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Wed Oct 04 2017 - 0.21.0 +- Use new API BaseURL (by astj) + * Wed Sep 27 2017 - 0.20.0 - build with Go 1.9 (by astj) diff --git a/version.go b/version.go index e1545f33..dbd51c08 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.20.0" +const version = "0.21.0" var gitcommit string