From e73e35d0a86218a9624167110ff8e7fe42596234 Mon Sep 17 00:00:00 2001 From: Yuichi Watanabe Date: Tue, 28 May 2019 00:39:30 +0900 Subject: [PATCH] Bump version 0.9.2 --- CHANGELOG.md | 4 ++++ version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e206f0..f200da5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [0.9.2](https://github.com/vvatanabe/gitb/compare/0.9.1...0.9.2) (2019-05-28) + +* change internal communication via http to use git ls-remote [#4](https://github.com/vvatanabe/gitb/pull/4) ([vvatanabe](https://github.com/vvatanabe)) + ## [0.9.1](https://github.com/vvatanabe/gitb/compare/0.9.0...0.9.1) (2019-05-27) * fixed the process to get the URL of repository obtained via HTTP [#3](https://github.com/vvatanabe/gitb/pull/3) ([vvatanabe](https://github.com/vvatanabe)) diff --git a/version.go b/version.go index f055f30..6af9d87 100644 --- a/version.go +++ b/version.go @@ -4,7 +4,7 @@ import "fmt" const ( name = "gitb" - version = "0.9.1" + version = "0.9.2" usage = "A command line tool for using Backlog's git comfortably." usageText = name + " " )