Skip to content

Commit

Permalink
Merge pull request #202 from mackerelio/bump-version-0.36.0
Browse files Browse the repository at this point in the history
Release version 0.36.0
  • Loading branch information
lufia committed Mar 27, 2019
2 parents a0473ce + 642275f commit cf4a786
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.36.0 (2019-03-27)

* [monitors] support interruption monitoring thresholds of service metric monitors #201 (itchyny)
* Improve Makefile #200 (itchyny)
* Create services package and add tests for services subcommand #198 (itchyny)
* Create org package and add tests for org subcommand #196 (itchyny)
* Add tests for hosts package #195 (itchyny)
* Introduce Client interface for Mackerel API #194 (itchyny)
* Add out stream argument to format.PrettyPrintJSON #193 (itchyny)


## 0.35.1 (2019-03-06)

* Fix status option of hosts subcommand #191 (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.35.1
VERSION := 0.36.0
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)"

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

* [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny)
<https://github.com/mackerelio/mkr/pull/201>
* Improve Makefile (by itchyny)
<https://github.com/mackerelio/mkr/pull/200>
* Create services package and add tests for services subcommand (by itchyny)
<https://github.com/mackerelio/mkr/pull/198>
* Create org package and add tests for org subcommand (by itchyny)
<https://github.com/mackerelio/mkr/pull/196>
* Add tests for hosts package (by itchyny)
<https://github.com/mackerelio/mkr/pull/195>
* Introduce Client interface for Mackerel API (by itchyny)
<https://github.com/mackerelio/mkr/pull/194>
* Add out stream argument to format.PrettyPrintJSON (by itchyny)
<https://github.com/mackerelio/mkr/pull/193>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 27 Mar 2019 06:47:20 +0000

mkr (0.35.1-1.v2) stable; urgency=low

* Fix status option of hosts subcommand (by itchyny)
Expand Down
19 changes: 19 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
mkr (0.36.0-1) stable; urgency=low

* [monitors] support interruption monitoring thresholds of service metric monitors (by itchyny)
<https://github.com/mackerelio/mkr/pull/201>
* Improve Makefile (by itchyny)
<https://github.com/mackerelio/mkr/pull/200>
* Create services package and add tests for services subcommand (by itchyny)
<https://github.com/mackerelio/mkr/pull/198>
* Create org package and add tests for org subcommand (by itchyny)
<https://github.com/mackerelio/mkr/pull/196>
* Add tests for hosts package (by itchyny)
<https://github.com/mackerelio/mkr/pull/195>
* Introduce Client interface for Mackerel API (by itchyny)
<https://github.com/mackerelio/mkr/pull/194>
* Add out stream argument to format.PrettyPrintJSON (by itchyny)
<https://github.com/mackerelio/mkr/pull/193>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 27 Mar 2019 06:47:20 +0000

mkr (0.35.1-1) stable; urgency=low

* Fix status option of hosts subcommand (by itchyny)
Expand Down
File renamed without changes.
9 changes: 9 additions & 0 deletions packaging/rpm/mkr-v2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ rm -f %{buildroot}%{_bindir}/%{name}
%{_bindir}/%{name}

%changelog
* 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)
- Create services package and add tests for services subcommand (by itchyny)
- Create org package and add tests for org subcommand (by itchyny)
- Add tests for hosts package (by itchyny)
- Introduce Client interface for Mackerel API (by itchyny)
- Add out stream argument to format.PrettyPrintJSON (by itchyny)

* Wed Mar 06 2019 <mackerel-developers@hatena.ne.jp> - 0.35.1
- Fix status option of hosts subcommand (by itchyny)

Expand Down
9 changes: 9 additions & 0 deletions packaging/rpm/mkr.spec
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ rm -f %{buildroot}%{_bindir}/${name}
%{_localbindir}/%{name}

%changelog
* 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)
- Create services package and add tests for services subcommand (by itchyny)
- Create org package and add tests for org subcommand (by itchyny)
- Add tests for hosts package (by itchyny)
- Introduce Client interface for Mackerel API (by itchyny)
- Add out stream argument to format.PrettyPrintJSON (by itchyny)

* Wed Mar 06 2019 <mackerel-developers@hatena.ne.jp> - 0.35.1
- Fix status option of hosts subcommand (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.35.1"
const version = "0.36.0"

var gitcommit string

0 comments on commit cf4a786

Please sign in to comment.