From f180309c1d2ce7b6c3f7ba88218659c8f8d20c86 Mon Sep 17 00:00:00 2001 From: b4b4r07 Date: Tue, 30 Oct 2018 17:33:32 +0900 Subject: [PATCH] Bump version 0.2.0 and update changelog --- CHANGELOG.md | 11 +++++++++++ main.go | 2 +- misc/scripts/bump-and-chglog.sh | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f0ce9a..198d073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. This file is automatically generated by [git-chglog](https://github.com/git-chglog/git-chglog). Don't edit by hand. + +## [v0.2.0](https://github.com/mercari/tfnotify/compare/v0.1.4...v0.2.0) (2018-10-30) + +### Pull Requests + +* Merge pull request [#23](https://github.com/mercari/tfnotify/issues/23) from isaoshimizu/add_support_codebuild +* Merge pull request [#21](https://github.com/mercari/tfnotify/issues/21) from mercari/dtan4/correct-codeowners +* Merge pull request [#22](https://github.com/mercari/tfnotify/issues/22) from mercari/dtan4/fix-golint-path +* Merge pull request [#19](https://github.com/mercari/tfnotify/issues/19) from mizzy/title-option + + ## [v0.1.4](https://github.com/mercari/tfnotify/compare/v0.1.3...v0.1.4) (2018-09-11) diff --git a/main.go b/main.go index fb171f9..f563198 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ import ( const ( name = "tfnotify" description = "Notify the execution result of terraform command" - version = "0.1.4" + version = "0.2.0" ) type tfnotify struct { diff --git a/misc/scripts/bump-and-chglog.sh b/misc/scripts/bump-and-chglog.sh index efcd2ab..598db19 100755 --- a/misc/scripts/bump-and-chglog.sh +++ b/misc/scripts/bump-and-chglog.sh @@ -26,4 +26,4 @@ git-chglog -o CHANGELOG.md --next-tag "v$next_version" git commit -am "Bump version $next_version and update changelog" git tag "v$next_version" -# git push && git push --tags +git push && git push --tags