diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f90122aa..7c53774c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.78.1 (2023-11-15) + +* Bump github.com/mackerelio/go-check-plugins from 0.45.0 to 0.46.1 in /wix #945 (dependabot[bot]) +* Bump golang.org/x/sys from 0.12.0 to 0.14.0 in /wix #941 (dependabot[bot]) +* Bump golang.org/x/net from 0.15.0 to 0.17.0 in /wix #940 (dependabot[bot]) + + ## 0.78.0 (2023-09-22) * Bump github.com/mackerelio/mkr from 0.51.0 to 0.53.0 in /wix #936 (dependabot[bot]) diff --git a/Makefile b/Makefile index ce28ee55b..330887435 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ MACKEREL_AGENT_NAME ?= "mackerel-agent" MACKEREL_API_BASE ?= "https://api.mackerelio.com" -VERSION := 0.78.0 +VERSION := 0.78.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 7942c696b..e1ac169ac 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/packaging/deb-systemd/debian/changelog @@ -1,3 +1,14 @@ +mackerel-agent (0.78.1-1.systemd) stable; urgency=low + + * Bump github.com/mackerelio/go-check-plugins from 0.45.0 to 0.46.1 in /wix (by dependabot[bot]) + + * Bump golang.org/x/sys from 0.12.0 to 0.14.0 in /wix (by dependabot[bot]) + + * Bump golang.org/x/net from 0.15.0 to 0.17.0 in /wix (by dependabot[bot]) + + + -- mackerel Wed, 15 Nov 2023 06:06:23 +0000 + mackerel-agent (0.78.0-1.systemd) stable; urgency=low * Bump github.com/mackerelio/mkr from 0.51.0 to 0.53.0 in /wix (by dependabot[bot]) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index 46e1737d5..f4c9ccd1c 100644 --- a/packaging/rpm/mackerel-agent-systemd.spec +++ b/packaging/rpm/mackerel-agent-systemd.spec @@ -54,6 +54,11 @@ systemctl enable %{name}.service %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %changelog +* Wed Nov 15 2023 - 0.78.1 +- Bump github.com/mackerelio/go-check-plugins from 0.45.0 to 0.46.1 in /wix (by dependabot[bot]) +- Bump golang.org/x/sys from 0.12.0 to 0.14.0 in /wix (by dependabot[bot]) +- Bump golang.org/x/net from 0.15.0 to 0.17.0 in /wix (by dependabot[bot]) + * Fri Sep 22 2023 - 0.78.0 - Bump github.com/mackerelio/mkr from 0.51.0 to 0.53.0 in /wix (by dependabot[bot]) - Bump github.com/mackerelio/mackerel-agent-plugins from 0.78.0 to 0.79.0 in /wix (by dependabot[bot]) diff --git a/version.go b/version.go index a5314dc5f..7b5d19c9c 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.78.0" +const version = "0.78.1" var gitcommit string