Skip to content

Commit ff3cab1

Browse files
authored
Merge pull request #693 from mackerelio/bump-version-0.60.0
Release version 0.60.0
2 parents c599983 + 48d9356 commit ff3cab1

File tree

6 files changed

+25
-2
lines changed

6 files changed

+25
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.60.0 (2025-03-31)
4+
5+
* update mackerel-client-go to v0.36.0 #691 (fujiwara)
6+
* replace to newer runner-images #690 (yseto)
7+
* Bump golang.org/x/net from 0.33.0 to 0.36.0 #689 (dependabot[bot])
8+
9+
310
## 0.59.2 (2025-03-04)
411

512
* fix permission #686 (yseto)

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BIN := mkr
2-
VERSION := 0.59.2
2+
VERSION := 0.60.0
33
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
44
BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)"
55
export CGO_ENABLED := 0

packaging/deb-v2/debian/changelog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
mkr (0.60.0-1.v2) stable; urgency=low
2+
3+
* update mackerel-client-go to v0.36.0 (by fujiwara)
4+
<https://github.com/mackerelio/mkr/pull/691>
5+
* replace to newer runner-images (by yseto)
6+
<https://github.com/mackerelio/mkr/pull/690>
7+
* Bump golang.org/x/net from 0.33.0 to 0.36.0 (by dependabot[bot])
8+
<https://github.com/mackerelio/mkr/pull/689>
9+
10+
-- mackerel <mackerel-developers@hatena.ne.jp> Mon, 31 Mar 2025 06:35:18 +0000
11+
112
mkr (0.59.2-1.v2) stable; urgency=low
213

314
* fix permission (by yseto)
File renamed without changes.

packaging/rpm/mkr-v2.spec

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ rm -f %{buildroot}%{_bindir}/%{name}
3535
%{_bindir}/%{name}
3636

3737
%changelog
38+
* Mon Mar 31 2025 <mackerel-developers@hatena.ne.jp> - 0.60.0
39+
- update mackerel-client-go to v0.36.0 (by fujiwara)
40+
- replace to newer runner-images (by yseto)
41+
- Bump golang.org/x/net from 0.33.0 to 0.36.0 (by dependabot[bot])
42+
3843
* Tue Mar 4 2025 <mackerel-developers@hatena.ne.jp> - 0.59.2
3944
- fix permission (by yseto)
4045
- added container registry GHCR (by yseto)

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package main
22

3-
const version = "0.59.2"
3+
const version = "0.60.0"
44

55
var gitcommit string

0 commit comments

Comments
 (0)