From 046c768bc7f78cc316508359538dbf87f5f8e019 Mon Sep 17 00:00:00 2001 From: Yuichi Watanabe Date: Thu, 12 Dec 2019 12:36:55 +0900 Subject: [PATCH] Bump version 2.2.0 --- CHANGELOG.md | 4 ++++ version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa90e3a..01ee0d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [2.2.0](https://github.com/vvatanabe/gitb/compare/2.1.0...2.2.0) (2019-12-12) + +* Support origin blame command options (#24) [#25](https://github.com/vvatanabe/gitb/pull/25) ([vvatanabe](https://github.com/vvatanabe)) + ## [2.1.0](https://github.com/vvatanabe/gitb/compare/2.0.1...2.1.0) (2019-12-12) * support git blame-pr for Backlog (#22) [#23](https://github.com/vvatanabe/gitb/pull/23) ([vvatanabe](https://github.com/vvatanabe)) diff --git a/version.go b/version.go index d630915..b2b6cab 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ import "fmt" const ( name = "gitb" - version = "2.1.0" + version = "2.2.0" usage = "A command line tool for using Backlog's git comfortably." usageText = name + " " )