Skip to content

Commit

Permalink
Merge pull request #550 from mackerelio/bump-version-0.59.2
Browse files Browse the repository at this point in the history
Release version 0.59.2
  • Loading branch information
lufia committed Mar 27, 2019
2 parents edca94e + a8ef952 commit b15b1c0
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## 0.59.2 (2019-03-27)

* trim trailing newlines from command string on windows #548 (Songmu)
* Improve Makefile #547 (itchyny)


## 0.59.1 (2019-02-13)

* fix counter naming problem on Windows #544 (lufia)
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.59.1
VERSION := 0.59.2
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
ARGS := "-conf=mackerel-agent.conf"
BUILD_OS_TARGETS := "linux darwin freebsd windows netbsd"
Expand Down
9 changes: 9 additions & 0 deletions packaging/deb-systemd/debian/changelog
@@ -1,3 +1,12 @@
mackerel-agent (0.59.2-1.systemd) stable; urgency=low

* trim trailing newlines from command string on windows (by Songmu)
<https://github.com/mackerelio/mackerel-agent/pull/548>
* Improve Makefile (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/547>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 27 Mar 2019 06:44:24 +0000

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

* fix counter naming problem on Windows (by lufia)
Expand Down
9 changes: 9 additions & 0 deletions packaging/deb/debian/changelog
@@ -1,3 +1,12 @@
mackerel-agent (0.59.2-1) stable; urgency=low

* trim trailing newlines from command string on windows (by Songmu)
<https://github.com/mackerelio/mackerel-agent/pull/548>
* Improve Makefile (by itchyny)
<https://github.com/mackerelio/mackerel-agent/pull/547>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 27 Mar 2019 06:44:24 +0000

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

* fix counter naming problem on Windows (by lufia)
Expand Down
4 changes: 4 additions & 0 deletions packaging/rpm/mackerel-agent-systemd.spec
Expand Up @@ -55,6 +55,10 @@ systemctl enable %{name}.service
%config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf

%changelog
* Wed Mar 27 2019 <mackerel-developers@hatena.ne.jp> - 0.59.2
- trim trailing newlines from command string on windows (by Songmu)
- Improve Makefile (by itchyny)

* Wed Feb 13 2019 <mackerel-developers@hatena.ne.jp> - 0.59.1
- fix counter naming problem on Windows (by lufia)

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

%changelog
* Wed Mar 27 2019 <mackerel-developers@hatena.ne.jp> - 0.59.2
- trim trailing newlines from command string on windows (by Songmu)
- Improve Makefile (by itchyny)

* Wed Feb 13 2019 <mackerel-developers@hatena.ne.jp> - 0.59.1
- fix counter naming problem on Windows (by lufia)

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

const version = "0.59.1"
const version = "0.59.2"

var gitcommit string

0 comments on commit b15b1c0

Please sign in to comment.