From 6ac580db6932232b4700de23540cddc628af6e07 Mon Sep 17 00:00:00 2001 From: Gosuke Miyashita Date: Mon, 13 May 2019 13:48:59 +0900 Subject: [PATCH] Checking in changes prior to tagging of version v0.6.0 --- CHANGELOG.md | 5 +++++ main.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3bd0f0..ea40ba0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v0.6.0](https://github.com/aktsk/atgen/compare/v0.5.0...v0.6.0) (2019-05-13) + +* Cache results of packges.Load() to shorten execution time [#14](https://github.com/aktsk/atgen/pull/14) ([mizzy](https://github.com/mizzy)) +* Remove RouterFuncs of Generator struct [#13](https://github.com/aktsk/atgen/pull/13) ([mizzy](https://github.com/mizzy)) + ## [v0.5.0](https://github.com/aktsk/atgen/compare/v0.4.0...v0.5.0) (2019-04-08) * Replace TrimLeft and TrimRight with TrimPrefix and TrimSuffix [#12](https://github.com/aktsk/atgen/pull/12) ([mizzy](https://github.com/mizzy)) diff --git a/main.go b/main.go index 4a5fa2e..3713205 100644 --- a/main.go +++ b/main.go @@ -7,7 +7,7 @@ import ( "github.com/urfave/cli" ) -var version = "0.5.0" +var version = "0.6.0" func main() { err := newApp().Run(os.Args)