Skip to content

Commit c3b1600

Browse files
committed
Merge pull request #66 from mackerelio/bump-version-0.4.0
Release version 0.4.0
2 parents 03f7ed4 + 18478dd commit c3b1600

File tree

6 files changed

+38
-5
lines changed

6 files changed

+38
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ deploy:
2626
api_key:
2727
secure: vmMQz+IjJ/LUa9SHAlLKyg4raSqkEBIRzqnjS1LK7ZjtcAROo6Pn0lUcC4qMZ96/VvNMdLyGndCOBXsdE2VBCY5goTI7uIW1oxbLM3qOMNQQldG1bOY34bjkiiDU15WLUsKKPEC2RdgwG1aAAsqcUDAeyRABYVBANSn9jylQnBC2b2mQMYUtVA1O9jl3Qg64Cy6MUUirE/SuKp/cnE3AakcQt54pNVsnM54bIyrbGhqThLj7p7uLJEm58oRWR7TTUSgmk/Rbj4aJSC4k5lzN9iL/Fr5AgnpEQQUg3ishE+5yqSW7f/PRqXC6ZI9p6XS7bhS8N178ImzouIsoKWltblsgUhfvE6ONyMpi1+RG+6Lp3HlpLuq0Pz/efEpcaSDg6lXDIvMBC2sA5pbPok6Yx4tJOSv8adWu9t0yGVJezYaqbN/071K9m3cM4YTQK4L39b2FxQ2ZrUhee8HZy5rDO8iqx2vgM+NXATz2L5Tjjzd4aqfIDX8R3PVImBci7se/wmamDUpOrcfSjrI2dzEQGBzBfIFIhCaCQSuEjpZqBKdcOztkn1uev7a0AAUeZ7my+uQNpAMO7/AapM7LLugmkLM06FgrHKWDPQP/T92MPyvmC04nNraetAVijVYLQnlK5+TdEMvkKHuY5afLp5mEzX+7jTSmjyaUNrbANs8bH/8=
2828
file:
29-
- "/home/travis/rpmbuild/RPMS/noarch/mackerel-check-plugins-0.3.1-1.noarch.rpm"
30-
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.3.1-1_all.deb"
29+
- "/home/travis/rpmbuild/RPMS/noarch/mackerel-check-plugins-0.4.0-1.noarch.rpm"
30+
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.4.0-1_all.deb"
3131
on:
3232
repo: mackerelio/go-check-plugins
3333
all_branches: true

CHANGELOG.md

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

3+
## 0.4.0 (2016-02-04)
4+
5+
* Fix duplicated help message #58 (hfm)
6+
* add qmail queue check to check-mailq #59 (tnmt)
7+
* Add check-elasticsearch #62 (naokibtn)
8+
* Add check-redis #63 (naokibtn)
9+
* check-procs: check PPID #64 (hfm)
10+
11+
312
## 0.3.1 (2016-01-07)
413

514
* build with go1.5 #43 (Songmu)

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Check Plugins for monitoring written in golang.
66

77
Documentation for each plugin is located in its respective sub directory.
88

9+
* [check-elasticsearch](./check-elasticsearch/README.md)
910
* [check-file-age](./check-file-age/README.md)
1011
* [check-http](./check-http/README.md)
1112
* [check-load](./check-load/README.md)
@@ -15,6 +16,7 @@ Documentation for each plugin is located in its respective sub directory.
1516
* [check-ntpoffset](./check-ntpoffset/README.md)
1617
* [check-postgresql](./check-postgresql/README.md)
1718
* [check-procs](./check-procs/README.md)
19+
* [check-redis](./check-redis/README.md)
1820
* [check-tcp](./check-tcp/README.md)
1921

2022
Specification

packaging/deb/debian/changelog

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
mackerel-check-plugins (0.4.0-1) stable; urgency=low
2+
3+
* Fix duplicated help message (by hfm)
4+
<https://github.com/mackerelio/go-check-plugins/pull/58>
5+
* add qmail queue check to check-mailq (by tnmt)
6+
<https://github.com/mackerelio/go-check-plugins/pull/59>
7+
* Add check-elasticsearch (by naokibtn)
8+
<https://github.com/mackerelio/go-check-plugins/pull/62>
9+
* Add check-redis (by naokibtn)
10+
<https://github.com/mackerelio/go-check-plugins/pull/63>
11+
* check-procs: check PPID (by hfm)
12+
<https://github.com/mackerelio/go-check-plugins/pull/64>
13+
14+
-- Songmu <[email protected]> Thu, 04 Feb 2016 11:37:26 +0900
15+
116
mackerel-check-plugins (0.3.1-1) stable; urgency=low
217

318
* build with go1.5 (by Songmu)

packaging/deb/debian/rules

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package=mackerel-check-plugins
88
override_dh_auto_install:
99
dh_auto_install
1010
install -d -m 755 debian/tmp/usr/local/bin
11-
for i in file-age http load log mailq ntpoffset postgresql procs tcp mysql;do \
11+
for i in elasticsearch file-age http load log mailq ntpoffset postgresql procs redis tcp mysql;do \
1212
install -m755 debian/check-$$i debian/tmp/usr/local/bin; \
1313
done
1414

packaging/rpm/mackerel-check-plugins.spec

+9-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%define __targetdir /usr/local/bin
44

55
Name: mackerel-check-plugins
6-
Version: 0.3.1
6+
Version: 0.4.0
77
Release: 1
88
License: Commercial
99
Summary: macekrel.io check plugins
@@ -25,7 +25,7 @@ mackerel.io check plugins
2525

2626
%{__mkdir} -p %{buildroot}%{__targetdir}
2727

28-
for i in file-age http load log mailq ntpoffset postgresql procs tcp mysql;do \
28+
for i in elasticsearch file-age http load log mailq ntpoffset postgresql procs redis tcp mysql;do \
2929
%{__install} -m0755 %{_sourcedir}/build/check-$i %{buildroot}%{__targetdir}/; \
3030
done
3131

@@ -37,6 +37,13 @@ done
3737
%{__targetdir}
3838

3939
%changelog
40+
* Thu Feb 04 2016 <[email protected]> - 0.4.0
41+
- Fix duplicated help message (by hfm)
42+
- add qmail queue check to check-mailq (by tnmt)
43+
- Add check-elasticsearch (by naokibtn)
44+
- Add check-redis (by naokibtn)
45+
- check-procs: check PPID (by hfm)
46+
4047
* Thu Jan 07 2016 <[email protected]> - 0.3.1
4148
- build with go1.5 (by Songmu)
4249

0 commit comments

Comments
 (0)