diff options
author | spf13 <[email protected]> | 2015-05-25 11:59:47 -0400 |
---|---|---|
committer | spf13 <[email protected]> | 2015-05-25 11:59:47 -0400 |
commit | 6af9d6789edef483cd297978e010b40117ff1443 (patch) | |
tree | 083dbbd1391708adae4a84c8fcdf2e63e5ab5b7f | |
parent | fa58ef5394dce9a9d9f3246ae3abbab53d1b520b (diff) | |
download | hugo-0.14.tar.gz hugo-0.14.zip |
Bump version to Hugo v0.14.0v0.14
-rw-r--r-- | helpers/hugo.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/helpers/hugo.go b/helpers/hugo.go index d20a0e34e..a6e4d4ddf 100644 --- a/helpers/hugo.go +++ b/helpers/hugo.go @@ -15,15 +15,16 @@ package helpers import ( "fmt" - "github.com/spf13/hugo/hugofs" - "github.com/spf13/hugo/parser" "io/ioutil" "path/filepath" + + "github.com/spf13/hugo/hugofs" + "github.com/spf13/hugo/parser" ) // this should be the only one const hugoVersionMain = 0.14 -const hugoVersionSuffix = "-DEV" // blank this when doing a release +const hugoVersionSuffix = "" // blank this when doing a release // HugoVersion returns the current Hugo version. It will include // a suffix, typically '-DEV', if it's development version. |