diff --git a/CHANGELOG.md b/CHANGELOG.md index 32cd365e..afa24df4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.25.0 (2018-01-10) + +* Add plugin document links #141 (shibayu36) +* introduce goxz and adjust deps #139 (Songmu) +* add appveyor.yml and adjust tests for windows #140 (Songmu) +* Define plugin default installation path in windows environment #138 (Songmu) + + ## 0.24.1 (2017-12-13) * Rebuild to avoid panic when action of check-plugin was not specified #136 (astj) diff --git a/Makefile b/Makefile index 380efca2..a1677e70 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BIN = mkr -VERSION = 0.24.1 +VERSION = 0.25.0 CURRENT_REVISION = $(shell git rev-parse --short HEAD) all: clean cross lint gofmt test rpm deb diff --git a/packaging/deb-v2/debian/changelog b/packaging/deb-v2/debian/changelog index 736eb347..ac071fc2 100644 --- a/packaging/deb-v2/debian/changelog +++ b/packaging/deb-v2/debian/changelog @@ -1,3 +1,16 @@ +mkr (0.25.0-1.v2) stable; urgency=low + + * Add plugin document links (by shibayu36) + + * introduce goxz and adjust deps (by Songmu) + + * add appveyor.yml and adjust tests for windows (by Songmu) + + * Define plugin default installation path in windows environment (by Songmu) + + + -- mackerel Wed, 10 Jan 2018 16:19:07 +0900 + mkr (0.24.1-1.v2) stable; urgency=low * Rebuild to avoid panic when action of check-plugin was not specified (by astj) diff --git a/packaging/deb/debian/changelog b/packaging/deb/debian/changelog index 0a19da2e..23571b3e 100644 --- a/packaging/deb/debian/changelog +++ b/packaging/deb/debian/changelog @@ -1,3 +1,16 @@ +mkr (0.25.0-1) stable; urgency=low + + * Add plugin document links (by shibayu36) + + * introduce goxz and adjust deps (by Songmu) + + * add appveyor.yml and adjust tests for windows (by Songmu) + + * Define plugin default installation path in windows environment (by Songmu) + + + -- mackerel Wed, 10 Jan 2018 16:19:07 +0900 + mkr (0.24.1-1) stable; urgency=low * Rebuild to avoid panic when action of check-plugin was not specified (by astj) diff --git a/packaging/mkr_0.24.1.orig.tar.gz b/packaging/mkr_0.25.0.orig.tar.gz similarity index 100% rename from packaging/mkr_0.24.1.orig.tar.gz rename to packaging/mkr_0.25.0.orig.tar.gz diff --git a/packaging/rpm/mkr-v2.spec b/packaging/rpm/mkr-v2.spec index 2407a51a..181d9dcd 100644 --- a/packaging/rpm/mkr-v2.spec +++ b/packaging/rpm/mkr-v2.spec @@ -36,6 +36,12 @@ rm -f %{buildroot}%{_bindir}/%{name} %{_bindir}/%{name} %changelog +* Wed Jan 10 2018 - 0.25.0 +- Add plugin document links (by shibayu36) +- introduce goxz and adjust deps (by Songmu) +- add appveyor.yml and adjust tests for windows (by Songmu) +- Define plugin default installation path in windows environment (by Songmu) + * Wed Dec 13 2017 - 0.24.1 - Rebuild to avoid panic when action of check-plugin was not specified (by astj) diff --git a/packaging/rpm/mkr.spec b/packaging/rpm/mkr.spec index 98abb535..4dc877f8 100644 --- a/packaging/rpm/mkr.spec +++ b/packaging/rpm/mkr.spec @@ -42,6 +42,12 @@ rm -f %{buildroot}%{_bindir}/${name} %{_localbindir}/%{name} %changelog +* Wed Jan 10 2018 - 0.25.0 +- Add plugin document links (by shibayu36) +- introduce goxz and adjust deps (by Songmu) +- add appveyor.yml and adjust tests for windows (by Songmu) +- Define plugin default installation path in windows environment (by Songmu) + * Wed Dec 13 2017 - 0.24.1 - Rebuild to avoid panic when action of check-plugin was not specified (by astj) diff --git a/version.go b/version.go index 0006e697..6c6c91c4 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package main -const version = "0.24.1" +const version = "0.25.0" var gitcommit string