From 4fe7176ad65f80dc44dc9f8802f6c51474a08f84 Mon Sep 17 00:00:00 2001 From: y_uuki Date: Fri, 14 Sep 2018 10:53:39 +0900 Subject: [PATCH] ready for next release and update changelogs. version: 0.57.0 --- CHANGELOG.md | 9 +++++++++ Makefile | 2 +- packaging/deb-systemd/debian/changelog | 15 +++++++++++++++ packaging/deb/debian/changelog | 15 +++++++++++++++ packaging/rpm/mackerel-agent-systemd.spec | 7 +++++++ packaging/rpm/mackerel-agent.spec | 7 +++++++ version.go | 2 +- 7 files changed, 55 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a7a9de2..031a28e98 100644 --- a/CHANGELOG.md +++ b/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) diff --git a/Makefile b/Makefile index 00841a099..89aa9319e 100644 --- a/Makefile +++ b/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" diff --git a/packaging/deb-systemd/debian/changelog b/packaging/deb-systemd/debian/changelog index 23ca55df1..a9ca4ae33 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/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) + + * 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) + + + -- mackerel 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) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 608848dfc..6d31ed0ca 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,18 @@ +mackerel-agent (0.57.0-1) stable; urgency=low + + * 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) + + + -- mackerel 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) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index 44b846683..471c3d992 100644 --- a/packaging/rpm/mackerel-agent-systemd.spec +++ b/packaging/rpm/mackerel-agent-systemd.spec @@ -55,6 +55,13 @@ systemctl enable %{name}.service %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %changelog +* Fri Sep 14 2018 - 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 - 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) diff --git a/packaging/rpm/mackerel-agent.spec b/packaging/rpm/mackerel-agent.spec index 320b812cb..e8b208b59 100644 --- a/packaging/rpm/mackerel-agent.spec +++ b/packaging/rpm/mackerel-agent.spec @@ -62,6 +62,13 @@ fi /usr/local/bin/%{name} %changelog +* Fri Sep 14 2018 - 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 - 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) diff --git a/version.go b/version.go index e715aa46e..195fe44e7 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.56.1" +const version = "0.57.0" var gitcommit string