From 994d200725afa917890106102d21af5e13deb429 Mon Sep 17 00:00:00 2001 From: Asato Wakisaka Date: Tue, 12 Dec 2017 12:43:04 +0900 Subject: [PATCH] ready for next release and update changelogs. version: 0.24.0 --- CHANGELOG.md | 5 +++++ Makefile | 2 +- packaging/deb-v2/debian/changelog | 7 +++++++ packaging/deb/debian/changelog | 7 +++++++ ...kr_0.23.0.orig.tar.gz => mkr_0.24.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.23.0.orig.tar.gz => mkr_0.24.0.orig.tar.gz} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61f9d036..5109cc2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.24.0 (2017-12-12) + +* Support maxCheckAttempts for host metric and service metric monitors #134 (itchyny) + + ## 0.23.0 (2017-11-28) * [plugin.install] support direct URL target #130 (Songmu) diff --git a/Makefile b/Makefile index 7faae825..a0209e76 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN = mkr -VERSION = 0.23.0 +VERSION = 0.24.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 1fb021a0..8cecb54d 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.24.0-1.v2) stable; urgency=low + + * Support maxCheckAttempts for host metric and service metric monitors (by itchyny) + + + -- mackerel Tue, 12 Dec 2017 12:43:04 +0900 + mkr (0.23.0-1.v2) stable; urgency=low * [plugin.install] support direct URL target (by Songmu) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index f87427e0..af985765 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.24.0-1) stable; urgency=low + + * Support maxCheckAttempts for host metric and service metric monitors (by itchyny) + + + -- mackerel Tue, 12 Dec 2017 12:43:04 +0900 + mkr (0.23.0-1) stable; urgency=low * [plugin.install] support direct URL target (by Songmu) diff --git a/packaging/mkr_0.23.0.orig.tar.gz b/packaging/mkr_0.24.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.23.0.orig.tar.gz rename to packaging/mkr_0.24.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 3b05fca4..6235390a 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 +* Tue Dec 12 2017 - 0.24.0 +- Support maxCheckAttempts for host metric and service metric monitors (by itchyny) + * Tue Nov 28 2017 - 0.23.0 - [plugin.install] support direct URL target (by Songmu) - [plugin.install] support tarball archives (by Songmu) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index 6d6d04e9..f716af65 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -42,6 +42,9 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Tue Dec 12 2017 - 0.24.0 +- Support maxCheckAttempts for host metric and service metric monitors (by itchyny) + * Tue Nov 28 2017 - 0.23.0 - [plugin.install] support direct URL target (by Songmu) - [plugin.install] support tarball archives (by Songmu) diff --git a/version.go b/version.go index 10806759..0b134639 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.23.0" +const version = "0.24.0" var gitcommit string