Skip to content

Commit afc541e

Browse files
committed
Merge pull request #26 from mackerelio/bump-version-0.1.0
Release version 0.1.0
2 parents 71a4008 + dc375f0 commit afc541e

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ deploy:
2121
api_key:
2222
secure: vmMQz+IjJ/LUa9SHAlLKyg4raSqkEBIRzqnjS1LK7ZjtcAROo6Pn0lUcC4qMZ96/VvNMdLyGndCOBXsdE2VBCY5goTI7uIW1oxbLM3qOMNQQldG1bOY34bjkiiDU15WLUsKKPEC2RdgwG1aAAsqcUDAeyRABYVBANSn9jylQnBC2b2mQMYUtVA1O9jl3Qg64Cy6MUUirE/SuKp/cnE3AakcQt54pNVsnM54bIyrbGhqThLj7p7uLJEm58oRWR7TTUSgmk/Rbj4aJSC4k5lzN9iL/Fr5AgnpEQQUg3ishE+5yqSW7f/PRqXC6ZI9p6XS7bhS8N178ImzouIsoKWltblsgUhfvE6ONyMpi1+RG+6Lp3HlpLuq0Pz/efEpcaSDg6lXDIvMBC2sA5pbPok6Yx4tJOSv8adWu9t0yGVJezYaqbN/071K9m3cM4YTQK4L39b2FxQ2ZrUhee8HZy5rDO8iqx2vgM+NXATz2L5Tjjzd4aqfIDX8R3PVImBci7se/wmamDUpOrcfSjrI2dzEQGBzBfIFIhCaCQSuEjpZqBKdcOztkn1uev7a0AAUeZ7my+uQNpAMO7/AapM7LLugmkLM06FgrHKWDPQP/T92MPyvmC04nNraetAVijVYLQnlK5+TdEMvkKHuY5afLp5mEzX+7jTSmjyaUNrbANs8bH/8=
2323
file:
24-
- "/home/travis/rpmbuild/RPMS/noarch/mackerel-check-plugins-0.0.5-1.noarch.rpm"
25-
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.0.5-1_all.deb"
24+
- "/home/travis/rpmbuild/RPMS/noarch/mackerel-check-plugins-0.1.0-1.noarch.rpm"
25+
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.1.0-1_all.deb"
2626
on:
2727
repo: mackerelio/go-check-plugins
2828
all_branches: true

CHANGELOG.md

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

3+
## 0.1.0 (2015-11-05)
4+
5+
* check-log #21 (Songmu)
6+
* Add check-log in the packages #25 (Songmu)
7+
8+
39
## 0.0.5 (2015-10-26)
410

511
* Add mysql in packages

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Documentation for each plugin is located in its respective sub directory.
99
* [check-file-age](./check-file-age/README.md)
1010
* [check-http](./check-http/README.md)
1111
* [check-load](./check-load/README.md)
12+
* [check-log](./check-log/README.md)
1213
* [check-mysql](./check-mysql/README.md)
1314
* [check-procs](./check-procs/README.md)
1415

packaging/deb/debian/changelog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
mackerel-check-plugins (0.1.0-1) stable; urgency=low
2+
3+
* check-log (by Songmu)
4+
<https://github.com/mackerelio/go-check-plugins/pull/21>
5+
* Add check-log in the packages (by Songmu)
6+
<https://github.com/mackerelio/go-check-plugins/pull/25>
7+
8+
-- Songmu <[email protected]> Thu, 05 Nov 2015 16:06:46 +0900
9+
110
mackerel-check-plugins (0.0.5-1) stable; urgency=low
211

312
* Add mysql in packages

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 procs mysql;do \
11+
for i in file-age http load log procs mysql;do \
1212
install -m755 debian/check-$$i debian/tmp/usr/local/bin; \
1313
done
1414

packaging/rpm/mackerel-check-plugins.spec

+6-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.0.5
6+
Version: 0.1.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 procs mysql;do \
28+
for i in file-age http load log procs mysql;do \
2929
%{__install} -m0755 %{_sourcedir}/build/check-$i %{buildroot}%{__targetdir}/; \
3030
done
3131

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

3939
%changelog
40+
* Thu Nov 05 2015 <[email protected]> - 0.1.0
41+
- check-log (by Songmu)
42+
- Add check-log in the packages (by Songmu)
43+
4044
* Mon Oct 26 2015 <[email protected]> - 0.0.5
4145
- Add mysql in packages
4246

0 commit comments

Comments
 (0)