From 77f0f852ae2ab0b13438c1b59aa56f8f9f0004e8 Mon Sep 17 00:00:00 2001 From: mackerelbot Date: Mon, 18 Mar 2024 06:02:45 +0000 Subject: [PATCH] ready for next release and update changelogs. version: 0.57.0 --- CHANGELOG.md | 10 ++++++++++ Makefile | 2 +- packaging/deb-v2/debian/changelog | 17 +++++++++++++++++ ...56.0.orig.tar.gz => mkr_0.57.0.orig.tar.gz} | Bin packaging/rpm/mkr-v2.spec | 8 ++++++++ version.go | 2 +- 6 files changed, 37 insertions(+), 2 deletions(-) rename packaging/{mkr_0.56.0.orig.tar.gz => mkr_0.57.0.orig.tar.gz} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index fac58758..4af489b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.57.0 (2024-03-18) + +* Bump the stable-packages group with 4 updates #635 (dependabot[bot]) +* Bump the dev-dependencies group with 1 update #629 (dependabot[bot]) +* Bump mackerelio/workflows from 1.0.2 to 1.1.0 #627 (dependabot[bot]) +* Bump golang from 1.21-alpine to 1.22-alpine #625 (dependabot[bot]) +* Bump alpine from 3.17.3 to 3.19.1 #624 (dependabot[bot]) +* Bump github.com/itchyny/gojq from 0.12.13 to 0.12.14 #609 (dependabot[bot]) + + ## 0.56.0 (2024-03-07) * Always set CGO_ENABLED=0 #630 (fujiwara) diff --git a/Makefile b/Makefile index 617921cb..d358fba4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := mkr -VERSION := 0.56.0 +VERSION := 0.57.0 CURRENT_REVISION := $(shell git rev-parse --short HEAD) BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)" export CGO_ENABLED := 0 diff --git a/packaging/deb-v2/debian/changelog b/packaging/deb-v2/debian/changelog index db670658..4d68a58a 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,20 @@ +mkr (0.57.0-1.v2) stable; urgency=low + + * Bump the stable-packages group with 4 updates (by dependabot[bot]) + + * Bump the dev-dependencies group with 1 update (by dependabot[bot]) + + * Bump mackerelio/workflows from 1.0.2 to 1.1.0 (by dependabot[bot]) + + * Bump golang from 1.21-alpine to 1.22-alpine (by dependabot[bot]) + + * Bump alpine from 3.17.3 to 3.19.1 (by dependabot[bot]) + + * Bump github.com/itchyny/gojq from 0.12.13 to 0.12.14 (by dependabot[bot]) + + + -- mackerel Mon, 18 Mar 2024 06:02:45 +0000 + mkr (0.56.0-1.v2) stable; urgency=low * Always set CGO_ENABLED=0 (by fujiwara) diff --git a/packaging/mkr_0.56.0.orig.tar.gz b/packaging/mkr_0.57.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.56.0.orig.tar.gz rename to packaging/mkr_0.57.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 2397857d..dd3ff124 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -35,6 +35,14 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Mon Mar 18 2024 - 0.57.0 +- Bump the stable-packages group with 4 updates (by dependabot[bot]) +- Bump the dev-dependencies group with 1 update (by dependabot[bot]) +- Bump mackerelio/workflows from 1.0.2 to 1.1.0 (by dependabot[bot]) +- Bump golang from 1.21-alpine to 1.22-alpine (by dependabot[bot]) +- Bump alpine from 3.17.3 to 3.19.1 (by dependabot[bot]) +- Bump github.com/itchyny/gojq from 0.12.13 to 0.12.14 (by dependabot[bot]) + * Thu Mar 7 2024 - 0.56.0 - Always set CGO_ENABLED=0 (by fujiwara) diff --git a/version.go b/version.go index 78716c65..195fe44e 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.56.0" +const version = "0.57.0" var gitcommit string