Skip to content

Commit

Permalink
Merge pull request #543 from mackerelio/bump-version-0.59.0
Browse files Browse the repository at this point in the history
Release version 0.59.0
  • Loading branch information
astj committed Jan 10, 2019
2 parents b5bee6b + 9d61ce0 commit d4781f5
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

## 0.59.0 (2019-01-10)

* Fix decoding error message of executables on Windows #539 (mattn)
* Fix detecting EC2 instance on Windows #540 (mattn)
* add check-disk plugin for Windows #541 (susisu)


## 0.58.2 (2018-11-27)

* [windows] Bump mkr to latest #537 (astj)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,6 +1,6 @@
MACKEREL_AGENT_NAME ?= "mackerel-agent"
MACKEREL_API_BASE ?= "https://api.mackerelio.com"
VERSION = 0.58.2
VERSION = 0.59.0
CURRENT_REVISION = $(shell git rev-parse --short HEAD)
ARGS = "-conf=mackerel-agent.conf"
BUILD_OS_TARGETS = "linux darwin freebsd windows netbsd"
Expand Down
11 changes: 11 additions & 0 deletions packaging/deb-systemd/debian/changelog
@@ -1,3 +1,14 @@
mackerel-agent (0.59.0-1.systemd) stable; urgency=low

* Fix decoding error message of executables on Windows (by mattn)
<https://github.com/mackerelio/mackerel-agent/pull/539>
* Fix detecting EC2 instance on Windows (by mattn)
<https://github.com/mackerelio/mackerel-agent/pull/540>
* add check-disk plugin for Windows (by susisu)
<https://github.com/mackerelio/mackerel-agent/pull/541>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 10 Jan 2019 15:12:49 +0900

mackerel-agent (0.58.2-1.systemd) stable; urgency=low

* [windows] Bump mkr to latest (by astj)
Expand Down
11 changes: 11 additions & 0 deletions packaging/deb/debian/changelog
@@ -1,3 +1,14 @@
mackerel-agent (0.59.0-1) stable; urgency=low

* Fix decoding error message of executables on Windows (by mattn)
<https://github.com/mackerelio/mackerel-agent/pull/539>
* Fix detecting EC2 instance on Windows (by mattn)
<https://github.com/mackerelio/mackerel-agent/pull/540>
* add check-disk plugin for Windows (by susisu)
<https://github.com/mackerelio/mackerel-agent/pull/541>

-- mackerel <mackerel-developers@hatena.ne.jp> Thu, 10 Jan 2019 15:12:49 +0900

mackerel-agent (0.58.2-1) stable; urgency=low

* [windows] Bump mkr to latest (by astj)
Expand Down
5 changes: 5 additions & 0 deletions packaging/rpm/mackerel-agent-systemd.spec
Expand Up @@ -55,6 +55,11 @@ systemctl enable %{name}.service
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf

%changelog
* Thu Jan 10 2019 <mackerel-developers@hatena.ne.jp> - 0.59.0
- Fix decoding error message of executables on Windows (by mattn)
- Fix detecting EC2 instance on Windows (by mattn)
- add check-disk plugin for Windows (by susisu)

* Tue Nov 27 2018 <mackerel-developers@hatena.ne.jp> - 0.58.2
- [windows] Bump mkr to latest (by astj)

Expand Down
5 changes: 5 additions & 0 deletions packaging/rpm/mackerel-agent.spec
Expand Up @@ -62,6 +62,11 @@ fi
/usr/local/bin/%{name}

%changelog
* Thu Jan 10 2019 <mackerel-developers@hatena.ne.jp> - 0.59.0
- Fix decoding error message of executables on Windows (by mattn)
- Fix detecting EC2 instance on Windows (by mattn)
- add check-disk plugin for Windows (by susisu)

* Tue Nov 27 2018 <mackerel-developers@hatena.ne.jp> - 0.58.2
- [windows] Bump mkr to latest (by astj)

Expand Down
2 changes: 1 addition & 1 deletion version.go
@@ -1,5 +1,5 @@
package main

const version = "0.58.2"
const version = "0.59.0"

var gitcommit string

0 comments on commit d4781f5

Please sign in to comment.