Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 0.35.0 #190

Merged
merged 1 commit into from
Feb 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.35.0 (2019-02-13)

* separate hosts package from main and reorganize package structure #189 (Songmu)
* add wrap subcommand to monitor batch jobs to run with cron etc #186 (Songmu)
* add `checks run` subcommand to confirm check plugin settings #187 (Songmu)


## 0.34.2 (2018-11-27)

* Fix the default limit of mkr alerts #184 (itchyny)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
BIN = mkr
VERSION = 0.34.2
VERSION = 0.35.0
CURRENT_REVISION = $(shell git rev-parse --short HEAD)

all: clean cross lint gofmt test rpm deb
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 @@
mkr (0.35.0-1.v2) stable; urgency=low

* separate hosts package from main and reorganize package structure (by Songmu)
<https://github.com/mackerelio/mkr/pull/189>
* add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu)
<https://github.com/mackerelio/mkr/pull/186>
* add `checks run` subcommand to confirm check plugin settings (by Songmu)
<https://github.com/mackerelio/mkr/pull/187>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 13 Feb 2019 07:45:26 +0000

mkr (0.34.2-1.v2) stable; urgency=low

* Fix the default limit of mkr alerts (by itchyny)
Expand Down
11 changes: 11 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
mkr (0.35.0-1) stable; urgency=low

* separate hosts package from main and reorganize package structure (by Songmu)
<https://github.com/mackerelio/mkr/pull/189>
* add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu)
<https://github.com/mackerelio/mkr/pull/186>
* add `checks run` subcommand to confirm check plugin settings (by Songmu)
<https://github.com/mackerelio/mkr/pull/187>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 13 Feb 2019 07:45:26 +0000

mkr (0.34.2-1) stable; urgency=low

* Fix the default limit of mkr alerts (by itchyny)
Expand Down
File renamed without changes.
5 changes: 5 additions & 0 deletions packaging/rpm/mkr-v2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ rm -f %{buildroot}%{_bindir}/%{name}
%{_bindir}/%{name}

%changelog
* Wed Feb 13 2019 <mackerel-developers@hatena.ne.jp> - 0.35.0
- separate hosts package from main and reorganize package structure (by Songmu)
- add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu)
- add `checks run` subcommand to confirm check plugin settings (by Songmu)

* Tue Nov 27 2018 <mackerel-developers@hatena.ne.jp> - 0.34.2
- Fix the default limit of mkr alerts (by itchyny)

Expand Down
5 changes: 5 additions & 0 deletions packaging/rpm/mkr.spec
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ rm -f %{buildroot}%{_bindir}/${name}
%{_localbindir}/%{name}

%changelog
* Wed Feb 13 2019 <mackerel-developers@hatena.ne.jp> - 0.35.0
- separate hosts package from main and reorganize package structure (by Songmu)
- add wrap subcommand to monitor batch jobs to run with cron etc (by Songmu)
- add `checks run` subcommand to confirm check plugin settings (by Songmu)

* Tue Nov 27 2018 <mackerel-developers@hatena.ne.jp> - 0.34.2
- Fix the default limit of mkr alerts (by itchyny)

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package main

const version = "0.34.2"
const version = "0.35.0"

var gitcommit string