diff --git a/CHANGELOG.md b/CHANGELOG.md index 647b4d35b..c23ec966f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 0.79.0 (2024-03-06) + +* Bump github.com/mackerelio/mackerel-agent-plugins from 0.79.0 to 0.81.0 in /wix #981 (dependabot[bot]) +* Bump github.com/shirou/gopsutil/v3 from 3.23.8 to 3.24.2 #979 (dependabot[bot]) +* Bump github.com/mackerelio/go-check-plugins from 0.46.1 to 0.46.2 in /wix #978 (dependabot[bot]) +* Bump github.com/mackerelio/mkr from 0.54.0 to 0.55.0 in /wix #977 (dependabot[bot]) +* fix build errors on *BSD platforms #975 (lufia) +* command: drop `go test -short` mode #972 (lufia) +* replace interface{} to any #971 (Arthur1) +* Use shirou/gopsutil for getting CPU info on Linux #970 (Arthur1) + + ## 0.78.3 (2023-12-25) * Bump github.com/mackerelio/mkr from 0.53.0 to 0.54.0 in /wix #959 (dependabot[bot]) diff --git a/Makefile b/Makefile index d104bc210..9b200543f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ MACKEREL_AGENT_NAME ?= "mackerel-agent" MACKEREL_API_BASE ?= "https://api.mackerelio.com" -VERSION := 0.78.3 +VERSION := 0.79.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 ec165bb94..91030fa76 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/packaging/deb-systemd/debian/changelog @@ -1,3 +1,24 @@ +mackerel-agent (0.79.0-1.systemd) stable; urgency=low + + * Bump github.com/mackerelio/mackerel-agent-plugins from 0.79.0 to 0.81.0 in /wix (by dependabot[bot]) + + * Bump github.com/shirou/gopsutil/v3 from 3.23.8 to 3.24.2 (by dependabot[bot]) + + * Bump github.com/mackerelio/go-check-plugins from 0.46.1 to 0.46.2 in /wix (by dependabot[bot]) + + * Bump github.com/mackerelio/mkr from 0.54.0 to 0.55.0 in /wix (by dependabot[bot]) + + * fix build errors on *BSD platforms (by lufia) + + * command: drop `go test -short` mode (by lufia) + + * replace interface{} to any (by Arthur1) + + * Use shirou/gopsutil for getting CPU info on Linux (by Arthur1) + + + -- mackerel Wed, 6 Mar 2024 01:38:17 +0000 + mackerel-agent (0.78.3-1.systemd) stable; urgency=low * Bump github.com/mackerelio/mkr from 0.53.0 to 0.54.0 in /wix (by dependabot[bot]) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index ad50be30f..1349b9878 100644 --- a/packaging/rpm/mackerel-agent-systemd.spec +++ b/packaging/rpm/mackerel-agent-systemd.spec @@ -54,6 +54,16 @@ systemctl enable %{name}.service %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %changelog +* Wed Mar 6 2024 - 0.79.0 +- Bump github.com/mackerelio/mackerel-agent-plugins from 0.79.0 to 0.81.0 in /wix (by dependabot[bot]) +- Bump github.com/shirou/gopsutil/v3 from 3.23.8 to 3.24.2 (by dependabot[bot]) +- Bump github.com/mackerelio/go-check-plugins from 0.46.1 to 0.46.2 in /wix (by dependabot[bot]) +- Bump github.com/mackerelio/mkr from 0.54.0 to 0.55.0 in /wix (by dependabot[bot]) +- fix build errors on *BSD platforms (by lufia) +- command: drop `go test -short` mode (by lufia) +- replace interface{} to any (by Arthur1) +- Use shirou/gopsutil for getting CPU info on Linux (by Arthur1) + * Mon Dec 25 2023 - 0.78.3 - Bump github.com/mackerelio/mkr from 0.53.0 to 0.54.0 in /wix (by dependabot[bot]) - Bump github.com/mackerelio/mackerel-client-go from 0.26.0 to 0.29.0 (by dependabot[bot]) diff --git a/version.go b/version.go index 2313b4988..6c7bf242a 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.78.3" +const version = "0.79.0" var gitcommit string