diff --git a/CHANGELOG.md b/CHANGELOG.md index 38e3afe9..7a65af83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.37.0 (2019-05-08) + +* [wrap] Improve message truncation algorithm #203 (itchyny) + + ## 0.36.0 (2019-03-27) * [monitors] support interruption monitoring thresholds of service metric monitors #201 (itchyny) diff --git a/Makefile b/Makefile index c7d2ea7e..424055b9 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := mkr -VERSION := 0.36.0 +VERSION := 0.37.0 CURRENT_REVISION := $(shell git rev-parse --short HEAD) BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)" diff --git a/packaging/deb-v2/debian/changelog b/packaging/deb-v2/debian/changelog index d5257225..e91383a7 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.37.0-1.v2) stable; urgency=low + + * [wrap] Improve message truncation algorithm (by itchyny) + + + -- mackerel Wed, 08 May 2019 07:38:29 +0000 + mkr (0.36.0-1.v2) stable; urgency=low * [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 5a425e00..9a39027c 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,10 @@ +mkr (0.37.0-1) stable; urgency=low + + * [wrap] Improve message truncation algorithm (by itchyny) + + + -- mackerel Wed, 08 May 2019 07:38:29 +0000 + mkr (0.36.0-1) stable; urgency=low * [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny) diff --git a/packaging/mkr_0.36.0.orig.tar.gz b/packaging/mkr_0.37.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.36.0.orig.tar.gz rename to packaging/mkr_0.37.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 40c7684e..82bc347a 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 May 08 2019 - 0.37.0 +- [wrap] Improve message truncation algorithm (by itchyny) + * Wed Mar 27 2019 - 0.36.0 - [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny) - Improve Makefile (by itchyny) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index e2cf6b45..246a0285 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -42,6 +42,9 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Wed May 08 2019 - 0.37.0 +- [wrap] Improve message truncation algorithm (by itchyny) + * Wed Mar 27 2019 - 0.36.0 - [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny) - Improve Makefile (by itchyny) diff --git a/version.go b/version.go index 15e64ca1..35c22ee1 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.36.0" +const version = "0.37.0" var gitcommit string