Skip to content

Commit

Permalink
ready for next release and update changelogs. version: 0.56.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hayajo_77 committed Aug 30, 2018
1 parent 50f7517 commit cd3b88c
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.56.1 (2018-08-30)

* Do HTTP retry on determining cloud platform and suggesting customIdentifier #516 (astj)
* [windows] Add timeout to WMI query for disk metrics #511 (astj)


## 0.56.0 (2018-07-25)

* Fix starting order of Windows Service #506 (mattn)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MACKEREL_AGENT_NAME ?= "mackerel-agent"
MACKEREL_API_BASE ?= "https://api.mackerelio.com"
VERSION = 0.56.0
VERSION = 0.56.1
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
ARGS = "-conf=mackerel-agent.conf"
BUILD_OS_TARGETS = "linux darwin freebsd windows netbsd"
Expand Down
9 changes: 9 additions & 0 deletions packaging/deb-systemd/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
mackerel-agent (0.56.1-1.systemd) stable; urgency=low

* Do HTTP retry on determining cloud platform and suggesting customIdentifier (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/516>
* [windows] Add timeout to WMI query for disk metrics (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/511>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 30 Aug 2018 10:45:51 +0900

mackerel-agent (0.56.0-1.systemd) stable; urgency=low

* Fix starting order of Windows Service (by mattn)
Expand Down
9 changes: 9 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
mackerel-agent (0.56.1-1) stable; urgency=low

* Do HTTP retry on determining cloud platform and suggesting customIdentifier (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/516>
* [windows] Add timeout to WMI query for disk metrics (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/511>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 30 Aug 2018 10:45:51 +0900

mackerel-agent (0.56.0-1) stable; urgency=low

* Fix starting order of Windows Service (by mattn)
Expand Down
4 changes: 4 additions & 0 deletions packaging/rpm/mackerel-agent-systemd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ systemctl enable %{name}.service
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf

%changelog
* Thu Aug 30 2018 <mackerel-developers@hatena.ne.jp> - 0.56.1
- Do HTTP retry on determining cloud platform and suggesting customIdentifier (by astj)
- [windows] Add timeout to WMI query for disk metrics (by astj)

* Wed Jul 25 2018 <mackerel-developers@hatena.ne.jp> - 0.56.0
- Fix starting order of Windows Service (by mattn)
- Auto retire with shutdown on Windows (by mattn)
Expand Down
4 changes: 4 additions & 0 deletions packaging/rpm/mackerel-agent.spec
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ fi
/usr/local/bin/%{name}

%changelog
* Thu Aug 30 2018 <mackerel-developers@hatena.ne.jp> - 0.56.1
- Do HTTP retry on determining cloud platform and suggesting customIdentifier (by astj)
- [windows] Add timeout to WMI query for disk metrics (by astj)

* Wed Jul 25 2018 <mackerel-developers@hatena.ne.jp> - 0.56.0
- Fix starting order of Windows Service (by mattn)
- Auto retire with shutdown on Windows (by mattn)
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.56.0"
const version = "0.56.1"

var gitcommit string

0 comments on commit cd3b88c

Please sign in to comment.