Skip to content

Commit

Permalink
Merge c8805cd into d9bec76
Browse files Browse the repository at this point in the history
  • Loading branch information
astj committed May 8, 2019
2 parents d9bec76 + c8805cd commit b731468
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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)"

Expand Down
7 changes: 7 additions & 0 deletions packaging/deb-v2/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
mkr (0.37.0-1.v2) stable; urgency=low

* [wrap] Improve message truncation algorithm (by itchyny)
<https://github.com/mackerelio/mkr/pull/203>

-- mackerel <mackerel-developers@hatena.ne.jp> 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)
Expand Down
7 changes: 7 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
mkr (0.37.0-1) stable; urgency=low

* [wrap] Improve message truncation algorithm (by itchyny)
<https://github.com/mackerelio/mkr/pull/203>

-- mackerel <mackerel-developers@hatena.ne.jp> 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)
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions packaging/rpm/mkr-v2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ rm -f %{buildroot}%{_bindir}/%{name}
%{_bindir}/%{name}

%changelog
* Wed May 08 2019 <mackerel-developers@hatena.ne.jp> - 0.37.0
- [wrap] Improve message truncation algorithm (by itchyny)

* Wed Mar 27 2019 <mackerel-developers@hatena.ne.jp> - 0.36.0
- [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny)
- Improve Makefile (by itchyny)
Expand Down
3 changes: 3 additions & 0 deletions packaging/rpm/mkr.spec
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ rm -f %{buildroot}%{_bindir}/${name}
%{_localbindir}/%{name}

%changelog
* Wed May 08 2019 <mackerel-developers@hatena.ne.jp> - 0.37.0
- [wrap] Improve message truncation algorithm (by itchyny)

* Wed Mar 27 2019 <mackerel-developers@hatena.ne.jp> - 0.36.0
- [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny)
- Improve Makefile (by itchyny)
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package main

const version = "0.36.0"
const version = "0.37.0"

var gitcommit string

0 comments on commit b731468

Please sign in to comment.