diff --git a/CHANGELOG.md b/CHANGELOG.md index 5538097e..4f5f0d3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.58.0 (2024-06-12) + +* Bump the stable-packages group with 3 updates #651 (dependabot[bot]) +* Update Go and dependencies #650 (lufia) +* Add `--jq` option to `org` sub command #646 (kmuto) +* Bump github.com/urfave/cli from 1.22.14 to 1.22.15 #641 (dependabot[bot]) + + ## 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]) diff --git a/Makefile b/Makefile index c9119b6b..dd09c709 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := mkr -VERSION := 0.57.1 +VERSION := 0.58.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 a2bb72a0..197ef463 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,16 @@ +mkr (0.58.0-1.v2) stable; urgency=low + + * Bump the stable-packages group with 3 updates (by dependabot[bot]) + + * Update Go and dependencies (by lufia) + + * Add `--jq` option to `org` sub command (by kmuto) + + * Bump github.com/urfave/cli from 1.22.14 to 1.22.15 (by dependabot[bot]) + + + -- mackerel Wed, 12 Jun 2024 07:00:18 +0000 + 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]) diff --git a/packaging/mkr_0.57.1.orig.tar.gz b/packaging/mkr_0.58.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.57.1.orig.tar.gz rename to packaging/mkr_0.58.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index cbb26b0a..d8deafe7 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -35,6 +35,12 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Wed Jun 12 2024 - 0.58.0 +- Bump the stable-packages group with 3 updates (by dependabot[bot]) +- Update Go and dependencies (by lufia) +- Add `--jq` option to `org` sub command (by kmuto) +- Bump github.com/urfave/cli from 1.22.14 to 1.22.15 (by dependabot[bot]) + * 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]) diff --git a/version.go b/version.go index fcd421ae..b73d3dc0 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.57.1" +const version = "0.58.0" var gitcommit string