From b16e5adf7e5ccf950444637107dce5927269e601 Mon Sep 17 00:00:00 2001 From: Songmu Date: Mon, 18 Feb 2019 01:36:43 +0900 Subject: [PATCH] Checking in changes prior to tagging of version v0.1.0 ## [0.1.0](https://github.com/Songmu/godzil/compare/v0.0.3...0.1.0) (2019-02-18) * implement new subcommand [#13](https://github.com/Songmu/godzil/pull/13) ([Songmu](https://github.com/Songmu)) * add -version flag to print version [#12](https://github.com/Songmu/godzil/pull/12) ([Songmu](https://github.com/Songmu)) --- CHANGELOG.md | 5 +++++ version.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0f5ed2..b8543d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.1.0](https://github.com/Songmu/godzil/compare/v0.0.3...0.1.0) (2019-02-18) + +* implement new subcommand [#13](https://github.com/Songmu/godzil/pull/13) ([Songmu](https://github.com/Songmu)) +* add -version flag to print version [#12](https://github.com/Songmu/godzil/pull/12) ([Songmu](https://github.com/Songmu)) + ## [0.0.3](https://github.com/Songmu/godzil/compare/v0.0.2...0.0.3) (2019-02-17) * enhance commit log when releasing [#11](https://github.com/Songmu/godzil/pull/11) ([Songmu](https://github.com/Songmu)) diff --git a/version.go b/version.go index 60fb931..56ddb6b 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package godzil -const version = "0.0.3" +const version = "0.1.0" var revision = "HEAD"