From d43378c0b82f86ab483cb43d7c06a25b62b6f91c Mon Sep 17 00:00:00 2001 From: Songmu Date: Sun, 12 Jan 2020 00:54:33 +0900 Subject: [PATCH] Checking in changes prior to tagging of version v0.1.0 ## [v0.1.0](https://github.com/motemen/gobump/compare/cbe5aab9361f...v0.1.0) (2020-01-12) * Maintain release engineering for executable binary release [#15](https://github.com/motemen/gobump/pull/15) ([Songmu](https://github.com/Songmu)) * update deps [#14](https://github.com/motemen/gobump/pull/14) ([Songmu](https://github.com/Songmu)) * depends on Masterminds/semver/v3 [#13](https://github.com/motemen/gobump/pull/13) ([Songmu](https://github.com/Songmu)) * introduce Go Modules [#12](https://github.com/motemen/gobump/pull/12) ([Songmu](https://github.com/Songmu)) * switch semver package to Masterminds/semver from blang/semver [#11](https://github.com/motemen/gobump/pull/11) ([Songmu](https://github.com/Songmu)) * check if a new version is greater than the current one [#10](https://github.com/motemen/gobump/pull/10) ([Songmu](https://github.com/Songmu)) * add prompt feature: select the patch/minor/major from prompt [#9](https://github.com/motemen/gobump/pull/9) ([itchyny](https://github.com/itchyny)) * locate LICENSE file [#7](https://github.com/motemen/gobump/pull/7) ([Songmu](https://github.com/Songmu)) * Gobump.Run returns version informations [#6](https://github.com/motemen/gobump/pull/6) ([Songmu](https://github.com/Songmu)) * Add instruction to install gobump [#2](https://github.com/motemen/gobump/pull/2) ([shuheiktgw](https://github.com/shuheiktgw)) * reduce main package [#4](https://github.com/motemen/gobump/pull/4) ([Songmu](https://github.com/Songmu)) * add `-r` option for raw output [#1](https://github.com/motemen/gobump/pull/1) ([Songmu](https://github.com/Songmu)) --- CHANGELOG.md | 16 ++++++++++++++++ version.go | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..a32d4ea --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +## [v0.1.0](https://github.com/motemen/gobump/compare/cbe5aab9361f...v0.1.0) (2020-01-12) + +* Maintain release engineering for executable binary release [#15](https://github.com/motemen/gobump/pull/15) ([Songmu](https://github.com/Songmu)) +* update deps [#14](https://github.com/motemen/gobump/pull/14) ([Songmu](https://github.com/Songmu)) +* depends on Masterminds/semver/v3 [#13](https://github.com/motemen/gobump/pull/13) ([Songmu](https://github.com/Songmu)) +* introduce Go Modules [#12](https://github.com/motemen/gobump/pull/12) ([Songmu](https://github.com/Songmu)) +* switch semver package to Masterminds/semver from blang/semver [#11](https://github.com/motemen/gobump/pull/11) ([Songmu](https://github.com/Songmu)) +* check if a new version is greater than the current one [#10](https://github.com/motemen/gobump/pull/10) ([Songmu](https://github.com/Songmu)) +* add prompt feature: select the patch/minor/major from prompt [#9](https://github.com/motemen/gobump/pull/9) ([itchyny](https://github.com/itchyny)) +* locate LICENSE file [#7](https://github.com/motemen/gobump/pull/7) ([Songmu](https://github.com/Songmu)) +* Gobump.Run returns version informations [#6](https://github.com/motemen/gobump/pull/6) ([Songmu](https://github.com/Songmu)) +* Add instruction to install gobump [#2](https://github.com/motemen/gobump/pull/2) ([shuheiktgw](https://github.com/shuheiktgw)) +* reduce main package [#4](https://github.com/motemen/gobump/pull/4) ([Songmu](https://github.com/Songmu)) +* add `-r` option for raw output [#1](https://github.com/motemen/gobump/pull/1) ([Songmu](https://github.com/Songmu)) diff --git a/version.go b/version.go index d452f73..73ac0e7 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package gobump -const version = "0.0.0" +const version = "0.1.0" var revision = "HEAD"