From a8ef95245c0f756b7228bf266f4ccc0dfb44ae64 Mon Sep 17 00:00:00 2001 From: lufia Date: Wed, 27 Mar 2019 06:44:24 +0000 Subject: [PATCH] ready for next release and update changelogs. version: 0.59.2 --- CHANGELOG.md | 6 ++++++ Makefile | 2 +- packaging/deb-systemd/debian/changelog | 9 +++++++++ packaging/deb/debian/changelog | 9 +++++++++ packaging/rpm/mackerel-agent-systemd.spec | 4 ++++ packaging/rpm/mackerel-agent.spec | 4 ++++ version.go | 2 +- 7 files changed, 34 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70cf7b8cc..83a4d4aba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.59.2 (2019-03-27) + +* trim trailing newlines from command string on windows #548 (Songmu) +* Improve Makefile #547 (itchyny) + + ## 0.59.1 (2019-02-13) * fix counter naming problem on Windows #544 (lufia) diff --git a/Makefile b/Makefile index b58848059..a679186cf 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ MACKEREL_AGENT_NAME ?= "mackerel-agent" MACKEREL_API_BASE ?= "https://api.mackerelio.com" -VERSION := 0.59.1 +VERSION := 0.59.2 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 3cd316608..fc53388b7 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/packaging/deb-systemd/debian/changelog @@ -1,3 +1,12 @@ +mackerel-agent (0.59.2-1.systemd) stable; urgency=low + + * trim trailing newlines from command string on windows (by Songmu) + + * Improve Makefile (by itchyny) + + + -- mackerel Wed, 27 Mar 2019 06:44:24 +0000 + mackerel-agent (0.59.1-1.systemd) stable; urgency=low * fix counter naming problem on Windows (by lufia) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index c79c75e10..240bd8a99 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,12 @@ +mackerel-agent (0.59.2-1) stable; urgency=low + + * trim trailing newlines from command string on windows (by Songmu) + + * Improve Makefile (by itchyny) + + + -- mackerel Wed, 27 Mar 2019 06:44:24 +0000 + mackerel-agent (0.59.1-1) stable; urgency=low * fix counter naming problem on Windows (by lufia) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index 6c60433b5..dc8941fd8 100644 --- a/packaging/rpm/mackerel-agent-systemd.spec +++ b/packaging/rpm/mackerel-agent-systemd.spec @@ -55,6 +55,10 @@ systemctl enable %{name}.service %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %changelog +* Wed Mar 27 2019 - 0.59.2 +- trim trailing newlines from command string on windows (by Songmu) +- Improve Makefile (by itchyny) + * Wed Feb 13 2019 - 0.59.1 - fix counter naming problem on Windows (by lufia) diff --git a/packaging/rpm/mackerel-agent.spec b/packaging/rpm/mackerel-agent.spec index 6fcce015c..c3de0ef7b 100644 --- a/packaging/rpm/mackerel-agent.spec +++ b/packaging/rpm/mackerel-agent.spec @@ -62,6 +62,10 @@ fi /usr/local/bin/%{name} %changelog +* Wed Mar 27 2019 - 0.59.2 +- trim trailing newlines from command string on windows (by Songmu) +- Improve Makefile (by itchyny) + * Wed Feb 13 2019 - 0.59.1 - fix counter naming problem on Windows (by lufia) diff --git a/version.go b/version.go index 1b3696322..9385df1b1 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.59.1" +const version = "0.59.2" var gitcommit string