Skip to content

Commit 88934ec

Browse files
committed
readme, version update for v0.13.4 release
1 parent ae440ab commit 88934ec

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### News
1212

13+
* `v0.13.4` [released](https://github.com/go-aah/tools/releases/tag/v0.13.4) and tagged on Feb 06, 2019.
1314
* `v0.13.3` [released](https://github.com/go-aah/tools/releases/tag/v0.13.3) and tagged on Dec 13, 2018.
1415
* `v0.13.0` [released](https://github.com/go-aah/tools/releases/tag/v0.13.0) and tagged on Dec 02, 2018.
1516
* `v0.12.2` [released](https://github.com/go-aah/tools/releases/tag/v0.12.2) and tagged on Jul 20, 2018.

aah/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module aahframe.work/cli/aah
22

33
require (
4-
aahframe.work v0.12.2
4+
aahframe.work v0.12.3
55
github.com/radovskyb/watcher v0.0.0-20181027232338-25a66c5e3b26
6-
github.com/stretchr/testify v1.2.2
6+
github.com/stretchr/testify v1.3.0
77
)

aah/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func getAppVersion(appBaseDir string, cfg *config.Config) string {
160160
}
161161

162162
// fallback version number from file aah.project
163-
version := cfg.StringDefault("build.version", "")
163+
version := cfg.StringDefault("build.version", "0.0.1")
164164

165165
// git describe
166166
if !ess.IsFileExists(filepath.Join(appBaseDir, ".git")) {

aah/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
)
1919

2020
// Version no. of aah framework CLI tool
21-
var Version = "0.13.3"
21+
var Version = "0.13.4"
2222

2323
var (
2424
errVersionNotExists = errors.New("version not exists")

0 commit comments

Comments
 (0)