Skip to content

Commit

Permalink
ready for next release and update changelogs. version: 0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
syou6162 committed Sep 27, 2018
1 parent 77aa21a commit a7d5350
Show file tree
Hide file tree
Showing 11 changed files with 39 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.23.0 (2018-09-27)

* add aws-cloudwatch-logs #255 (syou6162)
* Add CloudWatch Logs plugin #248 (itchyny)


## 0.22.1 (2018-09-13)

* [check-log] Trace an old file after logrotation with the inode number #250 (yuuki)
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.22.1
VERSION = 0.23.0
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
ifeq ($(OS),Windows_NT)
GOPATH_ROOT:=$(shell cygpath ${GOPATH})
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.22.1"
const version = "0.23.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.23.0-1.v2) stable; urgency=low

* add aws-cloudwatch-logs (by syou6162)
<https://github.com/mackerelio/go-check-plugins/pull/255>
* Add CloudWatch Logs plugin (by itchyny)
<https://github.com/mackerelio/go-check-plugins/pull/248>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 27 Sep 2018 11:46:55 +0900

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

* [check-log] Trace an old file after logrotation with the inode number (by yuuki)
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 smtp solr ssh ssl-cert tcp uptime; do \
for i in aws-cloudwatch-logs 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 smtp solr ssh ssl-cert 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.23.0-1) stable; urgency=low

* add aws-cloudwatch-logs (by syou6162)
<https://github.com/mackerelio/go-check-plugins/pull/255>
* Add CloudWatch Logs plugin (by itchyny)
<https://github.com/mackerelio/go-check-plugins/pull/248>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 27 Sep 2018 11:46:55 +0900

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

* [check-log] Trace an old file after logrotation with the inode number (by yuuki)
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 smtp solr ssh ssl-cert tcp uptime; do \
for i in aws-cloudwatch-logs 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 smtp 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
@@ -1,3 +1,4 @@
debian/check-aws-cloudwatch-logs
debian/check-aws-sqs-queue-size
debian/check-cert-file
debian/check-disk
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 ldap load log mailq masterha memcached mysql ntpoffset postgresql procs redis smtp solr ssh ssl-cert tcp uptime; do \
for i in aws-cloudwatch-logs 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 smtp solr ssh ssl-cert tcp uptime; do \
ln -s ./mackerel-check %{buildroot}%{__targetdir}/check-$i; \
done

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

%changelog
* Thu Sep 27 2018 <mackerel-developers@hatena.ne.jp> - 0.23.0
- add aws-cloudwatch-logs (by syou6162)
- Add CloudWatch Logs plugin (by itchyny)

* Thu Sep 13 2018 <mackerel-developers@hatena.ne.jp> - 0.22.1
- [check-log] Trace an old file after logrotation with the inode number (by yuuki)
- [check-log] Jsonize status file (by yuuki)
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 ldap load log mailq masterha memcached mysql ntpoffset postgresql procs redis smtp solr ssh ssl-cert tcp uptime; do \
for i in aws-cloudwatch-logs 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 smtp solr ssh ssl-cert tcp uptime; do \
%{__install} -m0755 %{_sourcedir}/build/check-$i %{buildroot}%{__targetdir}/; \
done

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

%changelog
* Thu Sep 27 2018 <mackerel-developers@hatena.ne.jp> - 0.23.0
- add aws-cloudwatch-logs (by syou6162)
- Add CloudWatch Logs plugin (by itchyny)

* Thu Sep 13 2018 <mackerel-developers@hatena.ne.jp> - 0.22.1
- [check-log] Trace an old file after logrotation with the inode number (by yuuki)
- [check-log] Jsonize status file (by yuuki)
Expand Down

0 comments on commit a7d5350

Please sign in to comment.