Skip to content

Commit d218306

Browse files
authored
Merge pull request #665 from mackerelio/bump-version-0.59.0
Release version 0.59.0
2 parents dab5bc0 + 0b51179 commit d218306

File tree

6 files changed

+21
-2
lines changed

6 files changed

+21
-2
lines changed

CHANGELOG.md

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

3+
## 0.59.0 (2024-11-26)
4+
5+
* Support query monitorings #664 (rmatsuoka)
6+
* fix unintentionally return in validateRules #663 (rmatsuoka)
7+
8+
39
## 0.58.0 (2024-06-12)
410

511
* Bump the stable-packages group with 3 updates #651 (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.58.0
2+
VERSION := 0.59.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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
mkr (0.59.0-1.v2) stable; urgency=low
2+
3+
* Support query monitorings (by rmatsuoka)
4+
<https://github.com/mackerelio/mkr/pull/664>
5+
* fix unintentionally return in validateRules (by rmatsuoka)
6+
<https://github.com/mackerelio/mkr/pull/663>
7+
8+
-- mackerel <[email protected]> Tue, 26 Nov 2024 06:13:27 +0000
9+
110
mkr (0.58.0-1.v2) stable; urgency=low
211

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

packaging/rpm/mkr-v2.spec

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

3737
%changelog
38+
* Tue Nov 26 2024 <[email protected]> - 0.59.0
39+
- Support query monitorings (by rmatsuoka)
40+
- fix unintentionally return in validateRules (by rmatsuoka)
41+
3842
* Wed Jun 12 2024 <[email protected]> - 0.58.0
3943
- Bump the stable-packages group with 3 updates (by dependabot[bot])
4044
- Update Go and dependencies (by lufia)

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.58.0"
3+
const version = "0.59.0"
44

55
var gitcommit string

0 commit comments

Comments
 (0)