From 600298b8939d8c19a9eddaf190f0b7fcc4c65de9 Mon Sep 17 00:00:00 2001 From: Katsuhiko YOSHIDA Date: Sat, 1 Dec 2018 11:46:05 +0900 Subject: [PATCH] Release v0.2.0 --- Changes | 8 ++++++++ main.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 1309244..008c35e 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,14 @@ Changes ======= +v0.2.0 + Features: + * Support JSON format output + + Fixes: + * Fix the concurrency problem (Thanks @hatajoe) + * Fix link to releases page (Thanks @mavimo) + v0.1.0 Features: * Support all of code search qualifiers diff --git a/main.go b/main.go index b4d5a5d..80c22ab 100644 --- a/main.go +++ b/main.go @@ -2,7 +2,7 @@ package main import "os" -const Version string = "v0.1.0" +const Version string = "v0.2.0" func main() { cli := &CLI{outStream: os.Stdout, errStream: os.Stderr}