Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 0.48.0 #524

Merged
merged 1 commit into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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])
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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)"

Expand Down
13 changes: 13 additions & 0 deletions packaging/deb-v2/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
mkr (0.48.0-1.v2) stable; urgency=low

* Update some libraries (by yseto)
<https://github.com/mackerelio/mkr/pull/518>
* improve `mkr status -v` to show host metrics (by kmuto)
<https://github.com/mackerelio/mkr/pull/517>
* added compile option, fix packaging format (by yseto)
<https://github.com/mackerelio/mkr/pull/515>
* Bump github.com/itchyny/gojq from 0.12.9 to 0.12.10 (by dependabot[bot])
<https://github.com/mackerelio/mkr/pull/513>

-- mackerel <mackerel-developers@hatena.ne.jp> 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])
Expand Down
13 changes: 13 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
mkr (0.48.0-1) stable; urgency=low

* Update some libraries (by yseto)
<https://github.com/mackerelio/mkr/pull/518>
* improve `mkr status -v` to show host metrics (by kmuto)
<https://github.com/mackerelio/mkr/pull/517>
* added compile option, fix packaging format (by yseto)
<https://github.com/mackerelio/mkr/pull/515>
* Bump github.com/itchyny/gojq from 0.12.9 to 0.12.10 (by dependabot[bot])
<https://github.com/mackerelio/mkr/pull/513>

-- mackerel <mackerel-developers@hatena.ne.jp> 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])
Expand Down
File renamed without changes.
6 changes: 6 additions & 0 deletions packaging/rpm/mkr-v2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ rm -f %{buildroot}%{_bindir}/%{name}
%{_bindir}/%{name}

%changelog
* Wed Jan 18 2023 <mackerel-developers@hatena.ne.jp> - 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 <mackerel-developers@hatena.ne.jp> - 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])
Expand Down
6 changes: 6 additions & 0 deletions packaging/rpm/mkr.spec
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ rm -f %{buildroot}%{_bindir}/${name}
%{_localbindir}/%{name}

%changelog
* Wed Jan 18 2023 <mackerel-developers@hatena.ne.jp> - 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 <mackerel-developers@hatena.ne.jp> - 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])
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package main

const version = "0.47.2"
const version = "0.48.0"

var gitcommit string