Skip to content

Commit

Permalink
ready for next release and update changelogs. version: 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
susisu committed Jun 7, 2018
1 parent a62a1b0 commit d2b60fb
Show file tree
Hide file tree
Showing 12 changed files with 47 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.21.0 (2018-06-07)

* add check-ssl-cert #34 (Songmu)
* Add feature use ntp server #237 (netmarkjp)
* [check-mysql] add unix socket option #236 (sugy)


## 0.20.0 (2018-05-16)

* [check-log] Add option to suppress pattern display #234 (k-hal)
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.20.0
VERSION = 0.21.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 @@ -28,6 +28,7 @@ Documentation for each plugin is located in its respective sub directory.
* [check-redis](./check-redis/README.md)
* [check-solr](./check-solr/README.md)
* [check-ssh](./check-ssh/README.md)
* [check-ssl-cert](./check-ssl-cert/README.md)
* [check-tcp](./check-tcp/README.md)
* [check-uptime](./check-uptime/README.md)
* [check-windows-eventlog](./check-windows-eventlog/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.20.0"
const version = "0.21.0"

var gitcommit string

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

* add check-ssl-cert (by Songmu)
<https://github.com/mackerelio/go-check-plugins/pull/34>
* Add feature use ntp server (by netmarkjp)
<https://github.com/mackerelio/go-check-plugins/pull/237>
* [check-mysql] add unix socket option (by sugy)
<https://github.com/mackerelio/go-check-plugins/pull/236>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 07 Jun 2018 14:28:38 +0900

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

* [check-log] Add option to suppress pattern display (by k-hal)
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 ldap 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 ssl-cert tcp uptime; do \
ln -s ./mackerel-check debian/${package}/usr/bin/check-$$i; \
done
11 changes: 11 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
mackerel-check-plugins (0.21.0-1) stable; urgency=low

* add check-ssl-cert (by Songmu)
<https://github.com/mackerelio/go-check-plugins/pull/34>
* Add feature use ntp server (by netmarkjp)
<https://github.com/mackerelio/go-check-plugins/pull/237>
* [check-mysql] add unix socket option (by sugy)
<https://github.com/mackerelio/go-check-plugins/pull/236>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 07 Jun 2018 14:28:38 +0900

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

* [check-log] Add option to suppress pattern display (by k-hal)
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 ldap 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 ssl-cert 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 @@ -19,5 +19,6 @@ debian/check-procs
debian/check-redis
debian/check-solr
debian/check-ssh
debian/check-ssl-cert
debian/check-tcp
debian/check-uptime
7 changes: 6 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 ldap 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 ssl-cert tcp uptime; do \
ln -s ./mackerel-check %{buildroot}%{__targetdir}/check-$i; \
done

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

%changelog
* Thu Jun 07 2018 <mackerel-developers@hatena.ne.jp> - 0.21.0
- add check-ssl-cert (by Songmu)
- Add feature use ntp server (by netmarkjp)
- [check-mysql] add unix socket option (by sugy)

* Wed May 16 2018 <mackerel-developers@hatena.ne.jp> - 0.20.0
- [check-log] Add option to suppress pattern display (by k-hal)
- [check-windows-eventlog] fix README - Some of the listed EVENTTYPEs can not be detected as alerts (by a-know)
Expand Down
7 changes: 6 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 ldap 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 ssl-cert tcp uptime; do \
%{__install} -m0755 %{_sourcedir}/build/check-$i %{buildroot}%{__targetdir}/; \
done

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

%changelog
* Thu Jun 07 2018 <mackerel-developers@hatena.ne.jp> - 0.21.0
- add check-ssl-cert (by Songmu)
- Add feature use ntp server (by netmarkjp)
- [check-mysql] add unix socket option (by sugy)

* Wed May 16 2018 <mackerel-developers@hatena.ne.jp> - 0.20.0
- [check-log] Add option to suppress pattern display (by k-hal)
- [check-windows-eventlog] fix README - Some of the listed EVENTTYPEs can not be detected as alerts (by a-know)
Expand Down

0 comments on commit d2b60fb

Please sign in to comment.