diff --git a/CHANGELOG.md b/CHANGELOG.md index f68de671..3669aeba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.19.0 (2017-09-20) + +* Support fetch command to retrieve many hosts #112 (itchyny) +* Prefer apibase in mackerel-agent confFile #108 (astj) + + ## 0.18.0 (2017-09-12) * add --customIdentifier option to mkr create #110 (astj) diff --git a/Makefile b/Makefile index 11d8f615..c43ed6d7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN = mkr -VERSION = 0.18.0 +VERSION = 0.19.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 66ce823f..c2b508e3 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,12 @@ +mkr (0.19.0-1.v2) stable; urgency=low + + * Support fetch command to retrieve many hosts (by itchyny) + + * Prefer apibase in mackerel-agent confFile (by astj) + + + -- mackerel Wed, 20 Sep 2017 12:30:15 +0900 + mkr (0.18.0-1.v2) stable; urgency=low * add --customIdentifier option to mkr create (by astj) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 3a77afea..f6033a04 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,12 @@ +mkr (0.19.0-1) stable; urgency=low + + * Support fetch command to retrieve many hosts (by itchyny) + + * Prefer apibase in mackerel-agent confFile (by astj) + + + -- mackerel Wed, 20 Sep 2017 12:30:15 +0900 + mkr (0.18.0-1) stable; urgency=low * add --customIdentifier option to mkr create (by astj) diff --git a/packaging/mkr_0.18.0.orig.tar.gz b/packaging/mkr_0.19.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.18.0.orig.tar.gz rename to packaging/mkr_0.19.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index af51c2a6..37970fec 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -36,6 +36,10 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Wed Sep 20 2017 - 0.19.0 +- Support fetch command to retrieve many hosts (by itchyny) +- Prefer apibase in mackerel-agent confFile (by astj) + * Tue Sep 12 2017 - 0.18.0 - add --customIdentifier option to mkr create (by astj) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index ffc275d7..f5789a4d 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -42,6 +42,10 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Wed Sep 20 2017 - 0.19.0 +- Support fetch command to retrieve many hosts (by itchyny) +- Prefer apibase in mackerel-agent confFile (by astj) + * Tue Sep 12 2017 - 0.18.0 - add --customIdentifier option to mkr create (by astj) diff --git a/version.go b/version.go index be729058..7ffabfa3 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.18.0" +const version = "0.19.0" var gitcommit string