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"