Skip to content

Commit 38148e7

Browse files
committed
Merge pull request #18 from mackerelio/bump-version-0.0.3
Release version 0.0.3
2 parents ab8a982 + 99dedaf commit 38148e7

File tree

5 files changed

+27
-5
lines changed

5 files changed

+27
-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.2-1.noarch.rpm"
25-
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.0.2-1_all.deb"
24+
- "/home/travis/rpmbuild/RPMS/noarch/mackerel-check-plugins-0.0.3-1.noarch.rpm"
25+
- "/home/travis/gopath/src/github.com/mackerelio/go-check-plugins/packaging/mackerel-check-plugins_0.0.3-1_all.deb"
2626
on:
2727
repo: mackerelio/go-check-plugins
2828
all_branches: true

CHANGELOG.md

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

3+
## 0.0.3 (2015-10-15)
4+
5+
* reduce binary size by using ldflags #15 (Songmu)
6+
* Remove cgo dependency from check-load #16 (Songmu)
7+
* Add check-load in the packages
8+
9+
310
## 0.0.2 (2015-10-08)
411

512
* fix MatchSelf behaviour #9 (Songmu)

packaging/deb/debian/changelog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
mackerel-check-plugins (0.0.3-1) stable; urgency=low
2+
3+
* reduce binary size by using ldflags (by Songmu)
4+
<https://github.com/mackerelio/go-check-plugins/pull/15>
5+
* Remove cgo dependency from check-load (by Songmu)
6+
<https://github.com/mackerelio/go-check-plugins/pull/16>
7+
* Add check-load in the packages
8+
9+
-- itchyny <[email protected]> Thu, 15 Oct 2015 12:14:23 +0900
10+
111
mackerel-check-plugins (0.0.2-1) stable; urgency=low
212

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

packaging/rpm/mackerel-check-plugins.spec

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

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

3939
%changelog
40+
* Thu Oct 15 2015 <[email protected]> - 0.0.3
41+
- reduce binary size by using ldflags (by Songmu)
42+
- Remove cgo dependency from check-load (by Songmu)
43+
- Add check-load in the packages
44+
4045
* Thu Oct 08 2015 <[email protected]> - 0.0.2
4146
- fix MatchSelf behaviour (by Songmu)
4247

0 commit comments

Comments
 (0)