From 87e192fc5997fa0e6970394524cf4c649b45ba85 Mon Sep 17 00:00:00 2001 From: itchyny Date: Wed, 20 Jun 2018 11:00:55 +0900 Subject: [PATCH] ready for next release and update changelogs. version: 0.55.0 --- 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 6be70729b..8a7318c42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.55.0 (2018-06-20) + +* improve PATH handling #501 (astj) +* Build with Go 1.10 #500 (astj) + + ## 0.54.1 (2018-03-28) * Support UUID in little-endian format on EC2 detection #496 (hayajo) diff --git a/Makefile b/Makefile index 182adc382..00972fc72 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ MACKEREL_AGENT_NAME ?= "mackerel-agent" MACKEREL_API_BASE ?= "https://api.mackerelio.com" -VERSION = 0.54.1 +VERSION = 0.55.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 abd6e94b8..2feae39b1 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/packaging/deb-systemd/debian/changelog @@ -1,3 +1,12 @@ +mackerel-agent (0.55.0-1.systemd) stable; urgency=low + + * improve PATH handling (by astj) + + * Build with Go 1.10 (by astj) + + + -- mackerel Wed, 20 Jun 2018 11:00:55 +0900 + mackerel-agent (0.54.1-1.systemd) stable; urgency=low * Support UUID in little-endian format on EC2 detection (by hayajo) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 2c3e9a640..fefe8d9f6 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,12 @@ +mackerel-agent (0.55.0-1) stable; urgency=low + + * improve PATH handling (by astj) + + * Build with Go 1.10 (by astj) + + + -- mackerel Wed, 20 Jun 2018 11:00:55 +0900 + mackerel-agent (0.54.1-1) stable; urgency=low * Support UUID in little-endian format on EC2 detection (by hayajo) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index cd507cf12..ab7838c6b 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 Jun 20 2018 - 0.55.0 +- improve PATH handling (by astj) +- Build with Go 1.10 (by astj) + * Wed Mar 28 2018 - 0.54.1 - Support UUID in little-endian format on EC2 detection (by hayajo) - change the message level from WARNING to INFO when customIdentifier is not registered (by hayajo) diff --git a/packaging/rpm/mackerel-agent.spec b/packaging/rpm/mackerel-agent.spec index 7c3b7ca95..85da12265 100644 --- a/packaging/rpm/mackerel-agent.spec +++ b/packaging/rpm/mackerel-agent.spec @@ -62,6 +62,10 @@ fi /usr/local/bin/%{name} %changelog +* Wed Jun 20 2018 - 0.55.0 +- improve PATH handling (by astj) +- Build with Go 1.10 (by astj) + * Wed Mar 28 2018 - 0.54.1 - Support UUID in little-endian format on EC2 detection (by hayajo) - change the message level from WARNING to INFO when customIdentifier is not registered (by hayajo) diff --git a/version.go b/version.go index 0b82b3360..7bbd0fa43 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.54.1" +const version = "0.55.0" var gitcommit string