From 3997f97ee24228d368323ebf34ffda87ea01c77a Mon Sep 17 00:00:00 2001 From: mackerelbot Date: Mon, 25 Dec 2023 00:56:40 +0000 Subject: [PATCH] ready for next release and update changelogs. version: 0.78.3 --- CHANGELOG.md | 10 ++++++++++ Makefile | 2 +- packaging/deb-systemd/debian/changelog | 17 +++++++++++++++++ packaging/rpm/mackerel-agent-systemd.spec | 8 ++++++++ version.go | 2 +- 5 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed5983bb7..647b4d35b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.78.3 (2023-12-25) + +* Bump github.com/mackerelio/mkr from 0.53.0 to 0.54.0 in /wix #959 (dependabot[bot]) +* Bump github.com/mackerelio/mackerel-client-go from 0.26.0 to 0.29.0 #958 (dependabot[bot]) +* Bump actions/setup-go from 4 to 5 #954 (dependabot[bot]) +* Bump actions/github-script from 6 to 7 #948 (dependabot[bot]) +* Bump github.com/fatih/color from 1.15.0 to 1.16.0 #944 (dependabot[bot]) +* Bump golang.org/x/text from 0.13.0 to 0.14.0 #943 (dependabot[bot]) + + ## 0.78.2 (2023-12-01) * Avoid iowait percentage's overflow when counter is reset #947 (Arthur1) diff --git a/Makefile b/Makefile index 1813f1e09..d104bc210 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ MACKEREL_AGENT_NAME ?= "mackerel-agent" MACKEREL_API_BASE ?= "https://api.mackerelio.com" -VERSION := 0.78.2 +VERSION := 0.78.3 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 eb2ec2e21..ec165bb94 100644 --- a/packaging/deb-systemd/debian/changelog +++ b/packaging/deb-systemd/debian/changelog @@ -1,3 +1,20 @@ +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]) + + * Bump github.com/mackerelio/mackerel-client-go from 0.26.0 to 0.29.0 (by dependabot[bot]) + + * Bump actions/setup-go from 4 to 5 (by dependabot[bot]) + + * Bump actions/github-script from 6 to 7 (by dependabot[bot]) + + * Bump github.com/fatih/color from 1.15.0 to 1.16.0 (by dependabot[bot]) + + * Bump golang.org/x/text from 0.13.0 to 0.14.0 (by dependabot[bot]) + + + -- mackerel Mon, 25 Dec 2023 00:56:40 +0000 + mackerel-agent (0.78.2-1.systemd) stable; urgency=low * Avoid iowait percentage's overflow when counter is reset (by Arthur1) diff --git a/packaging/rpm/mackerel-agent-systemd.spec b/packaging/rpm/mackerel-agent-systemd.spec index f7eae91f4..ad50be30f 100644 --- a/packaging/rpm/mackerel-agent-systemd.spec +++ b/packaging/rpm/mackerel-agent-systemd.spec @@ -54,6 +54,14 @@ systemctl enable %{name}.service %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf %changelog +* 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]) +- Bump actions/setup-go from 4 to 5 (by dependabot[bot]) +- Bump actions/github-script from 6 to 7 (by dependabot[bot]) +- Bump github.com/fatih/color from 1.15.0 to 1.16.0 (by dependabot[bot]) +- Bump golang.org/x/text from 0.13.0 to 0.14.0 (by dependabot[bot]) + * Fri Dec 1 2023 - 0.78.2 - Avoid iowait percentage's overflow when counter is reset (by Arthur1) diff --git a/version.go b/version.go index 16a5cdd44..2313b4988 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.78.2" +const version = "0.78.3" var gitcommit string