Skip to content

Commit

Permalink
Merge 5a942ef into 212adc3
Browse files Browse the repository at this point in the history
  • Loading branch information
lufia committed Jun 11, 2019
2 parents 212adc3 + 5a942ef commit 5b293fe
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.38.0 (2019-06-11)

* Move implementation of `mkr create` into mkr/hosts #208 (astj)
* Build With Go 1.12 #207 (astj)
* Update go module dependencies #206 (astj)
* support go modules #205 (lufia)


## 0.37.0 (2019-05-08)

* [wrap] Improve message truncation algorithm #203 (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.37.0
VERSION := 0.38.0
CURRENT_REVISION := $(shell git rev-parse --short HEAD)
BUILD_LDFLAGS := "-w -s -X main.gitcommit=$(CURRENT_REVISION)"

Expand Down
13 changes: 13 additions & 0 deletions packaging/deb-v2/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
mkr (0.38.0-1.v2) stable; urgency=low

* Move implementation of `mkr create` into mkr/hosts (by astj)
<https://github.com/mackerelio/mkr/pull/208>
* Build With Go 1.12 (by astj)
<https://github.com/mackerelio/mkr/pull/207>
* Update go module dependencies (by astj)
<https://github.com/mackerelio/mkr/pull/206>
* support go modules (by lufia)
<https://github.com/mackerelio/mkr/pull/205>

-- mackerel <mackerel-developers@hatena.ne.jp> Tue, 11 Jun 2019 03:15:58 +0000

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

* [wrap] Improve message truncation algorithm (by itchyny)
Expand Down
13 changes: 13 additions & 0 deletions packaging/deb/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
mkr (0.38.0-1) stable; urgency=low

* Move implementation of `mkr create` into mkr/hosts (by astj)
<https://github.com/mackerelio/mkr/pull/208>
* Build With Go 1.12 (by astj)
<https://github.com/mackerelio/mkr/pull/207>
* Update go module dependencies (by astj)
<https://github.com/mackerelio/mkr/pull/206>
* support go modules (by lufia)
<https://github.com/mackerelio/mkr/pull/205>

-- mackerel <mackerel-developers@hatena.ne.jp> Tue, 11 Jun 2019 03:15:58 +0000

mkr (0.37.0-1) stable; urgency=low

* [wrap] Improve message truncation algorithm (by itchyny)
Expand Down
File renamed without changes.
6 changes: 6 additions & 0 deletions packaging/rpm/mkr-v2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ rm -f %{buildroot}%{_bindir}/%{name}
%{_bindir}/%{name}

%changelog
* Tue Jun 11 2019 <mackerel-developers@hatena.ne.jp> - 0.38.0
- Move implementation of `mkr create` into mkr/hosts (by astj)
- Build With Go 1.12 (by astj)
- Update go module dependencies (by astj)
- support go modules (by lufia)

* Wed May 08 2019 <mackerel-developers@hatena.ne.jp> - 0.37.0
- [wrap] Improve message truncation algorithm (by itchyny)

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

%changelog
* Tue Jun 11 2019 <mackerel-developers@hatena.ne.jp> - 0.38.0
- Move implementation of `mkr create` into mkr/hosts (by astj)
- Build With Go 1.12 (by astj)
- Update go module dependencies (by astj)
- support go modules (by lufia)

* Wed May 08 2019 <mackerel-developers@hatena.ne.jp> - 0.37.0
- [wrap] Improve message truncation algorithm (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.37.0"
const version = "0.38.0"

var gitcommit string

0 comments on commit 5b293fe

Please sign in to comment.