From 9d61ce0d48b6bb95882ad462cd489c4570145056 Mon Sep 17 00:00:00 2001 From: Asato Wakisaka Date: Thu, 10 Jan 2019 15:12:49 +0900 Subject: [PATCH] ready for next release and update changelogs. version: 0.59.0 --- CHANGELOG.md | 7 +++++++ Makefile | 2 +- packaging/deb-systemd/debian/changelog | 11 +++++++++++ packaging/deb/debian/changelog | 11 +++++++++++ packaging/rpm/mackerel-agent-systemd.spec | 5 +++++ packaging/rpm/mackerel-agent.spec | 5 +++++ version.go | 2 +- 7 files changed, 41 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6f0522d4..3bca2ea0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.59.0 (2019-01-10) + +* Fix decoding error message of executables on Windows #539 (mattn) +* Fix detecting EC2 instance on Windows #540 (mattn) +* add check-disk plugin for Windows #541 (susisu) + + ## 0.58.2 (2018-11-27) * [windows] Bump mkr to latest #537 (astj) diff --git a/Makefile b/Makefile index 4131d6bba..a426f487c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ MACKEREL_AGENT_NAME ?= "mackerel-agent" MACKEREL_API_BASE ?= "https://api.mackerelio.com" -VERSION = 0.58.2 +VERSION = 0.59.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 19f28403b..026dfa57d 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/packaging/deb-systemd/debian/changelog @@ -1,3 +1,14 @@ +mackerel-agent (0.59.0-1.systemd) stable; urgency=low + + * Fix decoding error message of executables on Windows (by mattn) + + * Fix detecting EC2 instance on Windows (by mattn) + + * add check-disk plugin for Windows (by susisu) + + + -- mackerel Thu, 10 Jan 2019 15:12:49 +0900 + mackerel-agent (0.58.2-1.systemd) stable; urgency=low * [windows] Bump mkr to latest (by astj) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 5585f0275..3b4aef8c4 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,14 @@ +mackerel-agent (0.59.0-1) stable; urgency=low + + * Fix decoding error message of executables on Windows (by mattn) + + * Fix detecting EC2 instance on Windows (by mattn) + + * add check-disk plugin for Windows (by susisu) + + + -- mackerel Thu, 10 Jan 2019 15:12:49 +0900 + mackerel-agent (0.58.2-1) stable; urgency=low * [windows] Bump mkr to latest (by astj) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index 990264644..74b47cb26 100644 --- a/packaging/rpm/mackerel-agent-systemd.spec +++ b/packaging/rpm/mackerel-agent-systemd.spec @@ -55,6 +55,11 @@ systemctl enable %{name}.service %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %changelog +* Thu Jan 10 2019 - 0.59.0 +- Fix decoding error message of executables on Windows (by mattn) +- Fix detecting EC2 instance on Windows (by mattn) +- add check-disk plugin for Windows (by susisu) + * Tue Nov 27 2018 - 0.58.2 - [windows] Bump mkr to latest (by astj) diff --git a/packaging/rpm/mackerel-agent.spec b/packaging/rpm/mackerel-agent.spec index 909213352..f57477051 100644 --- a/packaging/rpm/mackerel-agent.spec +++ b/packaging/rpm/mackerel-agent.spec @@ -62,6 +62,11 @@ fi /usr/local/bin/%{name} %changelog +* Thu Jan 10 2019 - 0.59.0 +- Fix decoding error message of executables on Windows (by mattn) +- Fix detecting EC2 instance on Windows (by mattn) +- add check-disk plugin for Windows (by susisu) + * Tue Nov 27 2018 - 0.58.2 - [windows] Bump mkr to latest (by astj) diff --git a/version.go b/version.go index 227c884db..74ee7fdd3 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.58.2" +const version = "0.59.0" var gitcommit string