Skip to content

Commit

Permalink
ready for next release and update changelogs. version: 0.55.0
Browse files Browse the repository at this point in the history
  • Loading branch information
itchyny committed Jun 20, 2018
1 parent dbf09c5 commit 87e192f
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.55.0 (2018-06-20)

* improve PATH handling #501 (astj)
* Build with Go 1.10 #500 (astj)


## 0.54.1 (2018-03-28)

* Support UUID in little-endian format on EC2 detection #496 (hayajo)
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.54.1
VERSION = 0.55.0
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.55.0-1.systemd) stable; urgency=low

* improve PATH handling (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/501>
* Build with Go 1.10 (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/500>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 20 Jun 2018 11:00:55 +0900

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

* Support UUID in little-endian format on EC2 detection (by hayajo)
Expand Down
9 changes: 9 additions & 0 deletions packaging/deb/debian/changelog
@@ -1,3 +1,12 @@
mackerel-agent (0.55.0-1) stable; urgency=low

* improve PATH handling (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/501>
* Build with Go 1.10 (by astj)
<https://github.com/mackerelio/mackerel-agent/pull/500>

-- mackerel <mackerel-developers@hatena.ne.jp> Wed, 20 Jun 2018 11:00:55 +0900

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

* Support UUID in little-endian format on EC2 detection (by hayajo)
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 Jun 20 2018 <mackerel-developers@hatena.ne.jp> - 0.55.0
- improve PATH handling (by astj)
- Build with Go 1.10 (by astj)

* Wed Mar 28 2018 <mackerel-developers@hatena.ne.jp> - 0.54.1
- Support UUID in little-endian format on EC2 detection (by hayajo)
- change the message level from WARNING to INFO when customIdentifier is not registered (by hayajo)
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 Jun 20 2018 <mackerel-developers@hatena.ne.jp> - 0.55.0
- improve PATH handling (by astj)
- Build with Go 1.10 (by astj)

* Wed Mar 28 2018 <mackerel-developers@hatena.ne.jp> - 0.54.1
- Support UUID in little-endian format on EC2 detection (by hayajo)
- change the message level from WARNING to INFO when customIdentifier is not registered (by hayajo)
Expand Down
2 changes: 1 addition & 1 deletion version.go
@@ -1,5 +1,5 @@
package main

const version = "0.54.1"
const version = "0.55.0"

var gitcommit string

0 comments on commit 87e192f

Please sign in to comment.