diff --git a/CHANGELOG.md b/CHANGELOG.md index 4af489b0..5538097e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.57.1 (2024-05-01) + +* Bump github.com/mackerelio/mackerel-agent from 0.80.0 to 0.81.0 in the stable-packages group #642 (dependabot[bot]) +* Bump golang.org/x/net from 0.22.0 to 0.23.0 #640 (dependabot[bot]) +* Bump the stable-packages group with 4 updates #639 (dependabot[bot]) +* Bump github.com/itchyny/gojq from 0.12.14 to 0.12.15 #638 (dependabot[bot]) +* Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #634 (dependabot[bot]) +* Bump peter-evans/repository-dispatch from 2 to 3 #623 (dependabot[bot]) +* Bump actions/download-artifact from 3 to 4 #615 (dependabot[bot]) +* Bump actions/upload-artifact from 3 to 4 #614 (dependabot[bot]) +* Bump docker/build-push-action from 4 to 5 #591 (dependabot[bot]) + + ## 0.57.0 (2024-03-18) * Bump the stable-packages group with 4 updates #635 (dependabot[bot]) diff --git a/Makefile b/Makefile index d358fba4..c9119b6b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := mkr -VERSION := 0.57.0 +VERSION := 0.57.1 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 4d68a58a..a2bb72a0 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,26 @@ +mkr (0.57.1-1.v2) stable; urgency=low + + * Bump github.com/mackerelio/mackerel-agent from 0.80.0 to 0.81.0 in the stable-packages group (by dependabot[bot]) + + * Bump golang.org/x/net from 0.22.0 to 0.23.0 (by dependabot[bot]) + + * Bump the stable-packages group with 4 updates (by dependabot[bot]) + + * Bump github.com/itchyny/gojq from 0.12.14 to 0.12.15 (by dependabot[bot]) + + * Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 (by dependabot[bot]) + + * Bump peter-evans/repository-dispatch from 2 to 3 (by dependabot[bot]) + + * Bump actions/download-artifact from 3 to 4 (by dependabot[bot]) + + * Bump actions/upload-artifact from 3 to 4 (by dependabot[bot]) + + * Bump docker/build-push-action from 4 to 5 (by dependabot[bot]) + + + -- mackerel Wed, 1 May 2024 07:47:57 +0000 + mkr (0.57.0-1.v2) stable; urgency=low * Bump the stable-packages group with 4 updates (by dependabot[bot]) diff --git a/packaging/mkr_0.57.0.orig.tar.gz b/packaging/mkr_0.57.1.orig.tar.gz similarity index 100% rename from packaging/mkr_0.57.0.orig.tar.gz rename to packaging/mkr_0.57.1.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index dd3ff124..cbb26b0a 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -35,6 +35,17 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Wed May 1 2024 - 0.57.1 +- Bump github.com/mackerelio/mackerel-agent from 0.80.0 to 0.81.0 in the stable-packages group (by dependabot[bot]) +- Bump golang.org/x/net from 0.22.0 to 0.23.0 (by dependabot[bot]) +- Bump the stable-packages group with 4 updates (by dependabot[bot]) +- Bump github.com/itchyny/gojq from 0.12.14 to 0.12.15 (by dependabot[bot]) +- Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 (by dependabot[bot]) +- Bump peter-evans/repository-dispatch from 2 to 3 (by dependabot[bot]) +- Bump actions/download-artifact from 3 to 4 (by dependabot[bot]) +- Bump actions/upload-artifact from 3 to 4 (by dependabot[bot]) +- Bump docker/build-push-action from 4 to 5 (by dependabot[bot]) + * 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]) diff --git a/version.go b/version.go index 195fe44e..fcd421ae 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.57.0" +const version = "0.57.1" var gitcommit string