Skip to content

Commit 12c2de4

Browse files
authored
Merge pull request #305 from mackerelio/bump-version-0.33.0
Release version 0.33.0
2 parents ab310e7 + 3e69b72 commit 12c2de4

8 files changed

+34
-2
lines changed

CHANGELOG.md

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

3+
## 0.33.0 (2019-11-21)
4+
5+
* [check-log] Make building the error lines efficiently #304 (ygurumi)
6+
* [check-log] Ignore broken/unexpected json on reading state #302 (astj)
7+
8+
39
## 0.32.1 (2019-10-24)
410

511
* Build with Go 1.12.12

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = 0.32.1
1+
VERSION = 0.33.0
22
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
33
ifeq ($(OS),Windows_NT)
44
GOPATH_ROOT:=$(shell cygpath ${GOPATH})

mackerel-check.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func run(args []string) int {
6060
return exitOK
6161
}
6262

63-
const version = "0.32.1"
63+
const version = "0.33.0"
6464

6565
var gitcommit string
6666

packaging/deb-v2/debian/changelog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
mackerel-check-plugins (0.33.0-1.v2) stable; urgency=low
2+
3+
* [check-log] Make building the error lines efficiently (by ygurumi)
4+
<https://github.com/mackerelio/go-check-plugins/pull/304>
5+
* [check-log] Ignore broken/unexpected json on reading state (by astj)
6+
<https://github.com/mackerelio/go-check-plugins/pull/302>
7+
8+
-- mackerel <[email protected]> Thu, 21 Nov 2019 05:59:48 +0000
9+
110
mackerel-check-plugins (0.32.1-1.v2) stable; urgency=low
211

312
* Build with Go 1.12.12

packaging/deb/debian/changelog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
mackerel-check-plugins (0.33.0-1) stable; urgency=low
2+
3+
* [check-log] Make building the error lines efficiently (by ygurumi)
4+
<https://github.com/mackerelio/go-check-plugins/pull/304>
5+
* [check-log] Ignore broken/unexpected json on reading state (by astj)
6+
<https://github.com/mackerelio/go-check-plugins/pull/302>
7+
8+
-- mackerel <[email protected]> Thu, 21 Nov 2019 05:59:48 +0000
9+
110
mackerel-check-plugins (0.32.1-1) stable; urgency=low
211

312
* Build with Go 1.12.12

packaging/rpm/mackerel-check-plugins-v2.spec

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ done
3737
%{__targetdir}/*
3838

3939
%changelog
40+
* Thu Nov 21 2019 <[email protected]> - 0.33.0
41+
- [check-log] Make building the error lines efficiently (by ygurumi)
42+
- [check-log] Ignore broken/unexpected json on reading state (by astj)
43+
4044
* Thu Oct 24 2019 <[email protected]> - 0.32.1
4145
- Build with Go 1.12.12
4246

packaging/rpm/mackerel-check-plugins.spec

+4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ done
4646
%{__oldtargetdir}/*
4747

4848
%changelog
49+
* Thu Nov 21 2019 <[email protected]> - 0.33.0
50+
- [check-log] Make building the error lines efficiently (by ygurumi)
51+
- [check-log] Ignore broken/unexpected json on reading state (by astj)
52+
4953
* Thu Oct 24 2019 <[email protected]> - 0.32.1
5054
- Build with Go 1.12.12
5155

0 commit comments

Comments
 (0)