From b9bded8b23136005f2e08be16ed1a91dc0c19d48 Mon Sep 17 00:00:00 2001 From: Songmu Date: Thu, 21 Feb 2019 19:06:55 +0900 Subject: [PATCH] Checking in changes prior to tagging of version v0.1.0 ## [0.1.0](https://github.com/Songmu/make2help/compare/v0.0.2...0.1.0) (2019-02-21) * Introduce go modules and update releng tools [#5](https://github.com/Songmu/make2help/pull/5) ([Songmu](https://github.com/Songmu)) * use standard sort package and drop patrickmn/sortutil [#4](https://github.com/Songmu/make2help/pull/4) ([Songmu](https://github.com/Songmu)) * introduce xerrors [#3](https://github.com/Songmu/make2help/pull/3) ([Songmu](https://github.com/Songmu)) * support each phony style [#2](https://github.com/Songmu/make2help/pull/2) ([Songmu](https://github.com/Songmu)) --- CHANGELOG.md | 7 +++++++ cli.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a03d454..d17d492 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.0](https://github.com/Songmu/make2help/compare/v0.0.2...0.1.0) (2019-02-21) + +* Introduce go modules and update releng tools [#5](https://github.com/Songmu/make2help/pull/5) ([Songmu](https://github.com/Songmu)) +* use standard sort package and drop patrickmn/sortutil [#4](https://github.com/Songmu/make2help/pull/4) ([Songmu](https://github.com/Songmu)) +* introduce xerrors [#3](https://github.com/Songmu/make2help/pull/3) ([Songmu](https://github.com/Songmu)) +* support each phony style [#2](https://github.com/Songmu/make2help/pull/2) ([Songmu](https://github.com/Songmu)) + ## [v0.0.2](https://github.com/Songmu/make2help/compare/v0.0.1...v0.0.2) (2016-06-12) * adjust output [#1](https://github.com/Songmu/make2help/pull/1) ([Songmu](https://github.com/Songmu)) diff --git a/cli.go b/cli.go index dc3d340..6327cc7 100644 --- a/cli.go +++ b/cli.go @@ -10,7 +10,7 @@ import ( "github.com/mattn/go-isatty" ) -const version = "0.0.2" +const version = "0.1.0" var revision = "HEAD"