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.39.1 #222

Merged
merged 1 commit into from
Aug 29, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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.39.1 (2019-08-29)

* rename gopkg.in/urfave/cli.v1 -> github.com/urfave/cli #220 (lufia)
* Bump github.com/mackerelio/mackerel-agent from 0.61.1 to 0.62.0 #218 (dependabot-preview[bot])
* Bump github.com/mackerelio/mackerel-agent from 0.60.0 to 0.61.1 #216 (dependabot-preview[bot])


## 0.39.0 (2019-07-22)

* Implement anomaly detection monitor #212 (syou6162)
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.39.0
VERSION := 0.39.1
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)"

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.39.1-1.v2) stable; urgency=low

* rename gopkg.in/urfave/cli.v1 -> github.com/urfave/cli (by lufia)
<https://github.com/mackerelio/mkr/pull/220>
* Bump github.com/mackerelio/mackerel-agent from 0.61.1 to 0.62.0 (by dependabot-preview[bot])
<https://github.com/mackerelio/mkr/pull/218>
* Bump github.com/mackerelio/mackerel-agent from 0.60.0 to 0.61.1 (by dependabot-preview[bot])
<https://github.com/mackerelio/mkr/pull/216>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 29 Aug 2019 02:04:24 +0000

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

* Implement anomaly detection monitor (by syou6162)
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.39.1-1) stable; urgency=low

* rename gopkg.in/urfave/cli.v1 -> github.com/urfave/cli (by lufia)
<https://github.com/mackerelio/mkr/pull/220>
* Bump github.com/mackerelio/mackerel-agent from 0.61.1 to 0.62.0 (by dependabot-preview[bot])
<https://github.com/mackerelio/mkr/pull/218>
* Bump github.com/mackerelio/mackerel-agent from 0.60.0 to 0.61.1 (by dependabot-preview[bot])
<https://github.com/mackerelio/mkr/pull/216>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 29 Aug 2019 02:04:24 +0000

mkr (0.39.0-1) stable; urgency=low

* Implement anomaly detection monitor (by syou6162)
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
* Thu Aug 29 2019 <mackerel-developers@hatena.ne.jp> - 0.39.1
- rename gopkg.in/urfave/cli.v1 -> github.com/urfave/cli (by lufia)
- Bump github.com/mackerelio/mackerel-agent from 0.61.1 to 0.62.0 (by dependabot-preview[bot])
- Bump github.com/mackerelio/mackerel-agent from 0.60.0 to 0.61.1 (by dependabot-preview[bot])

* Mon Jul 22 2019 <mackerel-developers@hatena.ne.jp> - 0.39.0
- Implement anomaly detection monitor (by syou6162)
- Bump github.com/mackerelio/mackerel-agent from 0.59.3 to 0.60.0 (by dependabot-preview[bot])
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
* Thu Aug 29 2019 <mackerel-developers@hatena.ne.jp> - 0.39.1
- rename gopkg.in/urfave/cli.v1 -> github.com/urfave/cli (by lufia)
- Bump github.com/mackerelio/mackerel-agent from 0.61.1 to 0.62.0 (by dependabot-preview[bot])
- Bump github.com/mackerelio/mackerel-agent from 0.60.0 to 0.61.1 (by dependabot-preview[bot])

* Mon Jul 22 2019 <mackerel-developers@hatena.ne.jp> - 0.39.0
- Implement anomaly detection monitor (by syou6162)
- Bump github.com/mackerelio/mackerel-agent from 0.59.3 to 0.60.0 (by dependabot-preview[bot])
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.39.0"
const version = "0.39.1"

var gitcommit string