From 527bf4e7bb43d09d4505620f3683d090c052e861 Mon Sep 17 00:00:00 2001 From: Asato Wakisaka Date: Wed, 13 Dec 2017 14:14:28 +0900 Subject: [PATCH] ready for next release and update changelogs. version: 0.24.1 --- CHANGELOG.md | 5 +++++ Makefile | 2 +- packaging/deb-v2/debian/changelog | 7 +++++++ packaging/deb/debian/changelog | 7 +++++++ ...kr_0.24.0.orig.tar.gz => mkr_0.24.1.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.24.0.orig.tar.gz => mkr_0.24.1.orig.tar.gz} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5109cc2b..32cd365e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.24.1 (2017-12-13) + +* Rebuild to avoid panic when action of check-plugin was not specified #136 (astj) + + ## 0.24.0 (2017-12-12) * Support maxCheckAttempts for host metric and service metric monitors #134 (itchyny) diff --git a/Makefile b/Makefile index a0209e76..b6001247 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN = mkr -VERSION = 0.24.0 +VERSION = 0.24.1 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 8cecb54d..736eb347 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.24.1-1.v2) stable; urgency=low + + * Rebuild to avoid panic when action of check-plugin was not specified (by astj) + + + -- mackerel Wed, 13 Dec 2017 14:14:28 +0900 + mkr (0.24.0-1.v2) stable; urgency=low * Support maxCheckAttempts for host metric and service metric monitors (by itchyny) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index af985765..0a19da2e 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.24.1-1) stable; urgency=low + + * Rebuild to avoid panic when action of check-plugin was not specified (by astj) + + + -- mackerel Wed, 13 Dec 2017 14:14:28 +0900 + mkr (0.24.0-1) stable; urgency=low * Support maxCheckAttempts for host metric and service metric monitors (by itchyny) diff --git a/packaging/mkr_0.24.0.orig.tar.gz b/packaging/mkr_0.24.1.orig.tar.gz similarity index 100% rename from packaging/mkr_0.24.0.orig.tar.gz rename to packaging/mkr_0.24.1.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 6235390a..2407a51a 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 Dec 13 2017 - 0.24.1 +- Rebuild to avoid panic when action of check-plugin was not specified (by astj) + * Tue Dec 12 2017 - 0.24.0 - Support maxCheckAttempts for host metric and service metric monitors (by itchyny) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index f716af65..98abb535 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -42,6 +42,9 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Wed Dec 13 2017 - 0.24.1 +- Rebuild to avoid panic when action of check-plugin was not specified (by astj) + * Tue Dec 12 2017 - 0.24.0 - Support maxCheckAttempts for host metric and service metric monitors (by itchyny) diff --git a/version.go b/version.go index 0b134639..0006e697 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.24.0" +const version = "0.24.1" var gitcommit string