diff --git a/CHANGELOG.md b/CHANGELOG.md index 038fa880..7827bfb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.48.0 (2023-01-18) + +* Update some libraries #518 (yseto) +* improve `mkr status -v` to show host metrics #517 (kmuto) +* added compile option, fix packaging format #515 (yseto) +* Bump github.com/itchyny/gojq from 0.12.9 to 0.12.10 #513 (dependabot[bot]) + + ## 0.47.2 (2022-11-04) * Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 #505 (dependabot[bot]) diff --git a/Makefile b/Makefile index d4a6398a..83860909 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN := mkr -VERSION := 0.47.2 +VERSION := 0.48.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 eb07e57f..19cd5366 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,16 @@ +mkr (0.48.0-1.v2) stable; urgency=low + + * Update some libraries (by yseto) + + * improve `mkr status -v` to show host metrics (by kmuto) + + * added compile option, fix packaging format (by yseto) + + * Bump github.com/itchyny/gojq from 0.12.9 to 0.12.10 (by dependabot[bot]) + + + -- mackerel Wed, 18 Jan 2023 06:21:43 +0000 + mkr (0.47.2-1.v2) stable; urgency=low * Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 (by dependabot[bot]) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 0b93a769..e0ebe211 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,16 @@ +mkr (0.48.0-1) stable; urgency=low + + * Update some libraries (by yseto) + + * improve `mkr status -v` to show host metrics (by kmuto) + + * added compile option, fix packaging format (by yseto) + + * Bump github.com/itchyny/gojq from 0.12.9 to 0.12.10 (by dependabot[bot]) + + + -- mackerel Wed, 18 Jan 2023 06:21:43 +0000 + mkr (0.47.2-1) stable; urgency=low * Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 (by dependabot[bot]) diff --git a/packaging/mkr_0.47.2.orig.tar.gz b/packaging/mkr_0.48.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.47.2.orig.tar.gz rename to packaging/mkr_0.48.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 573106d5..f2f0ee76 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 Jan 18 2023 - 0.48.0 +- Update some libraries (by yseto) +- improve `mkr status -v` to show host metrics (by kmuto) +- added compile option, fix packaging format (by yseto) +- Bump github.com/itchyny/gojq from 0.12.9 to 0.12.10 (by dependabot[bot]) + * Fri Nov 4 2022 - 0.47.2 - Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 (by dependabot[bot]) - Bump github.com/mackerelio/mackerel-client-go from 0.21.2 to 0.22.0 (by dependabot[bot]) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index 00ffae9a..152da274 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -41,6 +41,12 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Wed Jan 18 2023 - 0.48.0 +- Update some libraries (by yseto) +- improve `mkr status -v` to show host metrics (by kmuto) +- added compile option, fix packaging format (by yseto) +- Bump github.com/itchyny/gojq from 0.12.9 to 0.12.10 (by dependabot[bot]) + * Fri Nov 4 2022 - 0.47.2 - Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 (by dependabot[bot]) - Bump github.com/mackerelio/mackerel-client-go from 0.21.2 to 0.22.0 (by dependabot[bot]) diff --git a/version.go b/version.go index aebb34d1..d1c8273e 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.47.2" +const version = "0.48.0" var gitcommit string