Skip to content

Commit

Permalink
Merge pull request #230 from mackerelio/bump-version-0.19.0
Browse files Browse the repository at this point in the history
Release version 0.19.0
  • Loading branch information
itchyny committed Mar 28, 2018
2 parents 6389acc + 485167b commit d07e84c
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.19.0 (2018-03-28)

* add check-ldap #227 (taku-k)
* [check-http] add regexp pattern option #225 (taku-k)


## 0.18.0 (2018-03-15)

* [check-http] add host header option #224 (taku-k)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 0.18.0
VERSION = 0.19.0
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
ifeq ($(OS),Windows_NT)
GOPATH_ROOT:=$(shell cygpath ${GOPATH})
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Documentation for each plugin is located in its respective sub directory.
* [check-file-size](./check-file-size/README.md)
* [check-http](./check-http/README.md)
* [check-jmx-jolokia](./check-jmx-jolokia/README.md)
* [check-ldap](./check-ldap/README.md)
* [check-load](./check-load/README.md)
* [check-log](./check-log/README.md)
* [check-mailq](./check-mailq/README.md)
Expand Down
2 changes: 1 addition & 1 deletion mackerel-check.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func run(args []string) int {
return exitOK
}

const version = "0.18.0"
const version = "0.19.0"

var gitcommit string

Expand Down
9 changes: 9 additions & 0 deletions packaging/deb-v2/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
mackerel-check-plugins (0.19.0-1.v2) stable; urgency=low

* add check-ldap (by taku-k)
<https://github.com/mackerelio/go-check-plugins/pull/227>
* [check-http] add regexp pattern option (by taku-k)
<https://github.com/mackerelio/go-check-plugins/pull/225>

-- mackerel <[email protected]> Wed, 28 Mar 2018 16:56:52 +0900

mackerel-check-plugins (0.18.0-1.v2) stable; urgency=low

* [check-http] add host header option (by taku-k)
Expand Down
2 changes: 1 addition & 1 deletion packaging/deb-v2/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ override_dh_auto_install:
dh_auto_install
install -d -m 755 debian/${package}/usr/bin
install -m 755 debian/mackerel-check debian/${package}/usr/bin
for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia ldap load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
ln -s ./mackerel-check debian/${package}/usr/bin/check-$$i; \
done
9 changes: 9 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
mackerel-check-plugins (0.19.0-1) stable; urgency=low

* add check-ldap (by taku-k)
<https://github.com/mackerelio/go-check-plugins/pull/227>
* [check-http] add regexp pattern option (by taku-k)
<https://github.com/mackerelio/go-check-plugins/pull/225>

-- mackerel <[email protected]> Wed, 28 Mar 2018 16:56:52 +0900

mackerel-check-plugins (0.18.0-1) stable; urgency=low

* [check-http] add host header option (by taku-k)
Expand Down
2 changes: 1 addition & 1 deletion packaging/deb/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package=mackerel-check-plugins
override_dh_auto_install:
dh_auto_install
install -d -m 755 debian/${package}/usr/bin
for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia ldap load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
install -m755 debian/check-$$i debian/${package}/usr/bin; \
done
install -d -m 755 debian/${package}/usr/local/bin
Expand Down
1 change: 1 addition & 0 deletions packaging/deb/debian/source/include-binaries
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ debian/check-file-age
debian/check-file-size
debian/check-http
debian/check-jmx-jolokia
debian/check-ldap
debian/check-load
debian/check-log
debian/check-mailq
Expand Down
6 changes: 5 additions & 1 deletion packaging/rpm/mackerel-check-plugins-v2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mackerel.io check plugins

%{__install} -m0755 %{_sourcedir}/build/mackerel-check %{buildroot}%{__targetdir}/

for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia ldap load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
ln -s ./mackerel-check %{buildroot}%{__targetdir}/check-$i; \
done

Expand All @@ -37,6 +37,10 @@ done
%{__targetdir}/*

%changelog
* Wed Mar 28 2018 <[email protected]> - 0.19.0
- add check-ldap (by taku-k)
- [check-http] add regexp pattern option (by taku-k)

* Thu Mar 15 2018 <[email protected]> - 0.18.0
- [check-http] add host header option (by taku-k)

Expand Down
6 changes: 5 additions & 1 deletion packaging/rpm/mackerel-check-plugins.spec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mackerel.io check plugins

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

for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
for i in aws-sqs-queue-size cert-file disk elasticsearch file-age file-size http jmx-jolokia ldap load log mailq masterha memcached mysql ntpoffset postgresql procs redis solr ssh tcp uptime; do \
%{__install} -m0755 %{_sourcedir}/build/check-$i %{buildroot}%{__targetdir}/; \
done

Expand All @@ -46,6 +46,10 @@ done
%{__oldtargetdir}/*

%changelog
* Wed Mar 28 2018 <[email protected]> - 0.19.0
- add check-ldap (by taku-k)
- [check-http] add regexp pattern option (by taku-k)

* Thu Mar 15 2018 <[email protected]> - 0.18.0
- [check-http] add host header option (by taku-k)

Expand Down

0 comments on commit d07e84c

Please sign in to comment.