diff --git a/CHANGELOG.md b/CHANGELOG.md index 908bc828f..1523caa88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.69.1 (2020-09-15) + +* kcps, stage: add --target option to build rpm #660 (lufia) + + ## 0.69.0 (2020-09-15) * revert changing filename unexpectedly #658 (lufia) diff --git a/Makefile b/Makefile index c1f4a4126..6c612e4a9 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ MACKEREL_AGENT_NAME ?= "mackerel-agent" MACKEREL_API_BASE ?= "https://api.mackerelio.com" -VERSION := 0.69.0 +VERSION := 0.69.1 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 ccbc27281..a18e4e081 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/packaging/deb-systemd/debian/changelog @@ -1,3 +1,10 @@ +mackerel-agent (0.69.1-1.systemd) stable; urgency=low + + * kcps, stage: add --target option to build rpm (by lufia) + + + -- mackerel Tue, 15 Sep 2020 08:00:38 +0000 + mackerel-agent (0.69.0-1.systemd) stable; urgency=low * revert changing filename unexpectedly (by lufia) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index b6f1924f5..f1c2499ee 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,10 @@ +mackerel-agent (0.69.1-1) stable; urgency=low + + * kcps, stage: add --target option to build rpm (by lufia) + + + -- mackerel Tue, 15 Sep 2020 08:00:38 +0000 + mackerel-agent (0.69.0-1) stable; urgency=low * revert changing filename unexpectedly (by lufia) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index 6631aad84..482e2f130 100644 --- a/packaging/rpm/mackerel-agent-systemd.spec +++ b/packaging/rpm/mackerel-agent-systemd.spec @@ -54,6 +54,9 @@ systemctl enable %{name}.service %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %changelog +* Tue Sep 15 2020 - 0.69.1 +- kcps, stage: add --target option to build rpm (by lufia) + * Tue Sep 15 2020 - 0.69.0 - revert changing filename unexpectedly (by lufia) - Bump github.com/shirou/gopsutil from 2.20.6+incompatible to 2.20.8+incompatible (by dependabot-preview[bot]) diff --git a/packaging/rpm/mackerel-agent.spec b/packaging/rpm/mackerel-agent.spec index 58c0865e9..dcaccb099 100644 --- a/packaging/rpm/mackerel-agent.spec +++ b/packaging/rpm/mackerel-agent.spec @@ -61,6 +61,9 @@ fi /usr/local/bin/%{name} %changelog +* Tue Sep 15 2020 - 0.69.1 +- kcps, stage: add --target option to build rpm (by lufia) + * Tue Sep 15 2020 - 0.69.0 - revert changing filename unexpectedly (by lufia) - Bump github.com/shirou/gopsutil from 2.20.6+incompatible to 2.20.8+incompatible (by dependabot-preview[bot]) diff --git a/version.go b/version.go index 65a3bf5f9..f54938de1 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.69.0" +const version = "0.69.1" var gitcommit string