Skip to content

Commit

Permalink
readme, version update for v0.13.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevatkm committed Feb 7, 2019
1 parent ae440ab commit 88934ec
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

### News

* `v0.13.4` [released](https://github.com/go-aah/tools/releases/tag/v0.13.4) and tagged on Feb 06, 2019.
* `v0.13.3` [released](https://github.com/go-aah/tools/releases/tag/v0.13.3) and tagged on Dec 13, 2018.
* `v0.13.0` [released](https://github.com/go-aah/tools/releases/tag/v0.13.0) and tagged on Dec 02, 2018.
* `v0.12.2` [released](https://github.com/go-aah/tools/releases/tag/v0.12.2) and tagged on Jul 20, 2018.
Expand Down
4 changes: 2 additions & 2 deletions aah/go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module aahframe.work/cli/aah

require (
aahframe.work v0.12.2
aahframe.work v0.12.3
github.com/radovskyb/watcher v0.0.0-20181027232338-25a66c5e3b26
github.com/stretchr/testify v1.2.2
github.com/stretchr/testify v1.3.0
)
2 changes: 1 addition & 1 deletion aah/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func getAppVersion(appBaseDir string, cfg *config.Config) string {
}

// fallback version number from file aah.project
version := cfg.StringDefault("build.version", "")
version := cfg.StringDefault("build.version", "0.0.1")

// git describe
if !ess.IsFileExists(filepath.Join(appBaseDir, ".git")) {
Expand Down
2 changes: 1 addition & 1 deletion aah/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
)

// Version no. of aah framework CLI tool
var Version = "0.13.3"
var Version = "0.13.4"

var (
errVersionNotExists = errors.New("version not exists")
Expand Down

0 comments on commit 88934ec

Please sign in to comment.