From 4eca3e07401764f4adcbcc3f4de191b386cda161 Mon Sep 17 00:00:00 2001 From: Gosuke Miyashita Date: Mon, 1 Apr 2019 18:07:06 +0900 Subject: [PATCH] Checking in changes prior to tagging of version v0.4.0 --- CHANGELOG.md | 5 +++++ main.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8802690..2bf6f6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v0.4.0](https://github.com/aktsk/atgen/compare/v0.3.0...v0.4.0) (2019-04-01) + +* Use go/packages instead of go/loader [#11](https://github.com/aktsk/atgen/pull/11) ([mizzy](https://github.com/mizzy)) +* Disable golint temporary [#10](https://github.com/aktsk/atgen/pull/10) ([mizzy](https://github.com/mizzy)) + ## [v0.3.0](https://github.com/aktsk/atgen/compare/v0.2.0...v0.3.0) (2019-03-12) * Support register variables [#8](https://github.com/aktsk/atgen/pull/8) ([mizzy](https://github.com/mizzy)) diff --git a/main.go b/main.go index 1321a52..c40eca9 100644 --- a/main.go +++ b/main.go @@ -7,7 +7,7 @@ import ( "github.com/urfave/cli" ) -var version = "0.3.0" +var version = "0.4.0" func main() { err := newApp().Run(os.Args)