Skip to content

Commit a82913d

Browse files
authored
Merge pull request #687 from mackerelio/bump-version-0.59.2
Release version 0.59.2
2 parents 6f483bb + c4a0165 commit a82913d

File tree

6 files changed

+29
-2
lines changed

6 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.59.2 (2025-03-04)
4+
5+
* fix permission #686 (yseto)
6+
* added container registry GHCR #684 (yseto)
7+
* added container registry ECR Public #683 (yseto)
8+
* Bump mackerelio/workflows from 1.2.0 to 1.4.0 #682 (dependabot[bot])
9+
10+
311
## 0.59.1 (2025-01-27)
412

513
* Bump the stable-packages group across 1 directory with 3 updates #672 (dependabot[bot])

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
BIN := mkr
2-
VERSION := 0.59.1
2+
VERSION := 0.59.2
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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
mkr (0.59.2-1.v2) stable; urgency=low
2+
3+
* fix permission (by yseto)
4+
<https://github.com/mackerelio/mkr/pull/686>
5+
* added container registry GHCR (by yseto)
6+
<https://github.com/mackerelio/mkr/pull/684>
7+
* added container registry ECR Public (by yseto)
8+
<https://github.com/mackerelio/mkr/pull/683>
9+
* Bump mackerelio/workflows from 1.2.0 to 1.4.0 (by dependabot[bot])
10+
<https://github.com/mackerelio/mkr/pull/682>
11+
12+
-- mackerel <[email protected]> Tue, 4 Mar 2025 02:14:09 +0000
13+
114
mkr (0.59.1-1.v2) stable; urgency=low
215

316
* Bump the stable-packages group across 1 directory with 3 updates (by dependabot[bot])
File renamed without changes.

packaging/rpm/mkr-v2.spec

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ rm -f %{buildroot}%{_bindir}/%{name}
3535
%{_bindir}/%{name}
3636

3737
%changelog
38+
* Tue Mar 4 2025 <[email protected]> - 0.59.2
39+
- fix permission (by yseto)
40+
- added container registry GHCR (by yseto)
41+
- added container registry ECR Public (by yseto)
42+
- Bump mackerelio/workflows from 1.2.0 to 1.4.0 (by dependabot[bot])
43+
3844
* Mon Jan 27 2025 <[email protected]> - 0.59.1
3945
- Bump the stable-packages group across 1 directory with 3 updates (by dependabot[bot])
4046
- Fix CI build (by ne-sachirou)

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package main
22

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

55
var gitcommit string

0 commit comments

Comments
 (0)