From e7b2e50556feee38e5a3366a8eba0e96b01aaf59 Mon Sep 17 00:00:00 2001 From: mackerelbot Date: Fri, 22 Dec 2023 01:33:22 +0000 Subject: [PATCH] ready for next release and update changelogs. version: 0.54.0 --- CHANGELOG.md | 9 +++++++++ Makefile | 2 +- packaging/deb-v2/debian/changelog | 15 +++++++++++++++ ...0.53.0.orig.tar.gz => mkr_0.54.0.orig.tar.gz} | Bin packaging/rpm/mkr-v2.spec | 7 +++++++ version.go | 2 +- 6 files changed, 33 insertions(+), 2 deletions(-) rename packaging/{mkr_0.53.0.orig.tar.gz => mkr_0.54.0.orig.tar.gz} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dcb58b4..a0b581c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.54.0 (2023-12-22) + +* Bump the stable-packages group with 1 update #617 (dependabot[bot]) +* Bump golang.org/x/crypto from 0.13.0 to 0.17.0 #616 (dependabot[bot]) +* Bump actions/setup-go from 4 to 5 #612 (dependabot[bot]) +* Bump the stable-packages group with 5 updates #610 (dependabot[bot]) +* update Go version to 1.21 and 1.20 by using reusable workflow #604 (lufia) + + ## 0.53.0 (2023-09-22) * Bump docker/login-action from 2 to 3 #593 (dependabot[bot]) diff --git a/Makefile b/Makefile index 9e432b2b..3e73d608 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := mkr -VERSION := 0.53.0 +VERSION := 0.54.0 CURRENT_REVISION := $(shell git rev-parse --short HEAD) BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)" diff --git a/packaging/deb-v2/debian/changelog b/packaging/deb-v2/debian/changelog index ca164dab..326d5202 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,18 @@ +mkr (0.54.0-1.v2) stable; urgency=low + + * Bump the stable-packages group with 1 update (by dependabot[bot]) + + * Bump golang.org/x/crypto from 0.13.0 to 0.17.0 (by dependabot[bot]) + + * Bump actions/setup-go from 4 to 5 (by dependabot[bot]) + + * Bump the stable-packages group with 5 updates (by dependabot[bot]) + + * update Go version to 1.21 and 1.20 by using reusable workflow (by lufia) + + + -- mackerel Fri, 22 Dec 2023 01:33:22 +0000 + mkr (0.53.0-1.v2) stable; urgency=low * Bump docker/login-action from 2 to 3 (by dependabot[bot]) diff --git a/packaging/mkr_0.53.0.orig.tar.gz b/packaging/mkr_0.54.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.53.0.orig.tar.gz rename to packaging/mkr_0.54.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 035ab886..e75fae81 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -35,6 +35,13 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Fri Dec 22 2023 - 0.54.0 +- Bump the stable-packages group with 1 update (by dependabot[bot]) +- Bump golang.org/x/crypto from 0.13.0 to 0.17.0 (by dependabot[bot]) +- Bump actions/setup-go from 4 to 5 (by dependabot[bot]) +- Bump the stable-packages group with 5 updates (by dependabot[bot]) +- update Go version to 1.21 and 1.20 by using reusable workflow (by lufia) + * Fri Sep 22 2023 - 0.53.0 - Bump docker/login-action from 2 to 3 (by dependabot[bot]) - Bump docker/setup-buildx-action from 2 to 3 (by dependabot[bot]) diff --git a/version.go b/version.go index 627aed63..9da523f9 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.53.0" +const version = "0.54.0" var gitcommit string