diff --git a/CHANGELOG.md b/CHANGELOG.md index c267e485..d5bca5ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.35.0 (2019-02-13) + +* separate hosts package from main and reorganize package structure #189 (Songmu) +* add wrap subcommand to monitor batch jobs to run with cron etc #186 (Songmu) +* add `checks run` subcommand to confirm check plugin settings #187 (Songmu) + + ## 0.34.2 (2018-11-27) * Fix the default limit of mkr alerts #184 (itchyny) diff --git a/Makefile b/Makefile index 8e76b363..908fafb2 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN = mkr -VERSION = 0.34.2 +VERSION = 0.35.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 646cbd01..78dd5403 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,14 @@ +mkr (0.35.0-1.v2) stable; urgency=low + + * separate hosts package from main and reorganize package structure (by Songmu) + + * add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu) + + * add `checks run` subcommand to confirm check plugin settings (by Songmu) + + + -- mackerel Wed, 13 Feb 2019 07:45:26 +0000 + mkr (0.34.2-1.v2) stable; urgency=low * Fix the default limit of mkr alerts (by itchyny) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 00f24cc4..cbc406ff 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,14 @@ +mkr (0.35.0-1) stable; urgency=low + + * separate hosts package from main and reorganize package structure (by Songmu) + + * add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu) + + * add `checks run` subcommand to confirm check plugin settings (by Songmu) + + + -- mackerel Wed, 13 Feb 2019 07:45:26 +0000 + mkr (0.34.2-1) stable; urgency=low * Fix the default limit of mkr alerts (by itchyny) diff --git a/packaging/mkr_0.34.2.orig.tar.gz b/packaging/mkr_0.35.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.34.2.orig.tar.gz rename to packaging/mkr_0.35.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 744d2646..b33ad490 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -36,6 +36,11 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Wed Feb 13 2019 - 0.35.0 +- separate hosts package from main and reorganize package structure (by Songmu) +- add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu) +- add `checks run` subcommand to confirm check plugin settings (by Songmu) + * Tue Nov 27 2018 - 0.34.2 - Fix the default limit of mkr alerts (by itchyny) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index 93582215..9a32601c 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -42,6 +42,11 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Wed Feb 13 2019 - 0.35.0 +- separate hosts package from main and reorganize package structure (by Songmu) +- add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu) +- add `checks run` subcommand to confirm check plugin settings (by Songmu) + * Tue Nov 27 2018 - 0.34.2 - Fix the default limit of mkr alerts (by itchyny) diff --git a/version.go b/version.go index 650aacc9..0dd80019 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.34.2" +const version = "0.35.0" var gitcommit string