Skip to content

Commit

Permalink
Merge pull request #525 from mackerelio/bump-version-0.57.0
Browse files Browse the repository at this point in the history
Release version 0.57.0
  • Loading branch information
yuuki committed Sep 14, 2018
2 parents c5f7190 + 4fe7176 commit 8bb7b51
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog

## 0.57.0 (2018-09-14)

* update Code Signing Certificate. #524 (hayajo)
* Build with Go 1.11 #522 (astj)
* [darwin] Fix iostat output parsing in CPU usage generator #520 (itchyny)
* [darwin] fix filesystem metrics for APFS vm partition volume #517 (itchyny)
* add loadavg1 and loadavg15 #519 (itchyny)


## 0.56.1 (2018-08-30)

* Do HTTP retry on determining cloud platform and suggesting customIdentifier #516 (astj)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,6 +1,6 @@
MACKEREL_AGENT_NAME ?= "mackerel-agent"
MACKEREL_API_BASE ?= "https://api.mackerelio.com"
VERSION = 0.56.1
VERSION = 0.57.0
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
ARGS = "-conf=mackerel-agent.conf"
BUILD_OS_TARGETS = "linux darwin freebsd windows netbsd"
Expand Down
15 changes: 15 additions & 0 deletions packaging/deb-systemd/debian/changelog
@@ -1,3 +1,18 @@
mackerel-agent (0.57.0-1.systemd) stable; urgency=low

* update Code Signing Certificate. (by hayajo)
<https://github.com/mackerelio/mackerel-agent/pull/524>
* Build with Go 1.11 (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/522>
* [darwin] Fix iostat output parsing in CPU usage generator (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/520>
* [darwin] fix filesystem metrics for APFS vm partition volume (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/517>
* add loadavg1 and loadavg15 (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/519>

-- mackerel <mackerel-developers@hatena.ne.jp> Fri, 14 Sep 2018 10:53:39 +0900

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

* Do HTTP retry on determining cloud platform and suggesting customIdentifier (by astj)
Expand Down
15 changes: 15 additions & 0 deletions packaging/deb/debian/changelog
@@ -1,3 +1,18 @@
mackerel-agent (0.57.0-1) stable; urgency=low

* update Code Signing Certificate. (by hayajo)
<https://github.com/mackerelio/mackerel-agent/pull/524>
* Build with Go 1.11 (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/522>
* [darwin] Fix iostat output parsing in CPU usage generator (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/520>
* [darwin] fix filesystem metrics for APFS vm partition volume (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/517>
* add loadavg1 and loadavg15 (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/519>

-- mackerel <mackerel-developers@hatena.ne.jp> Fri, 14 Sep 2018 10:53:39 +0900

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

* Do HTTP retry on determining cloud platform and suggesting customIdentifier (by astj)
Expand Down
7 changes: 7 additions & 0 deletions packaging/rpm/mackerel-agent-systemd.spec
Expand Up @@ -55,6 +55,13 @@ systemctl enable %{name}.service
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf

%changelog
* Fri Sep 14 2018 <mackerel-developers@hatena.ne.jp> - 0.57.0
- update Code Signing Certificate. (by hayajo)
- Build with Go 1.11 (by astj)
- [darwin] Fix iostat output parsing in CPU usage generator (by itchyny)
- [darwin] fix filesystem metrics for APFS vm partition volume (by itchyny)
- add loadavg1 and loadavg15 (by itchyny)

* 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)
Expand Down
7 changes: 7 additions & 0 deletions packaging/rpm/mackerel-agent.spec
Expand Up @@ -62,6 +62,13 @@ fi
/usr/local/bin/%{name}

%changelog
* Fri Sep 14 2018 <mackerel-developers@hatena.ne.jp> - 0.57.0
- update Code Signing Certificate. (by hayajo)
- Build with Go 1.11 (by astj)
- [darwin] Fix iostat output parsing in CPU usage generator (by itchyny)
- [darwin] fix filesystem metrics for APFS vm partition volume (by itchyny)
- add loadavg1 and loadavg15 (by itchyny)

* 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)
Expand Down
2 changes: 1 addition & 1 deletion version.go
@@ -1,5 +1,5 @@
package main

const version = "0.56.1"
const version = "0.57.0"

var gitcommit string

0 comments on commit 8bb7b51

Please sign in to comment.