Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspf13 <steve.francia@gmail.com>2015-05-25 18:59:47 +0300
committerspf13 <steve.francia@gmail.com>2015-05-25 18:59:47 +0300
commit6af9d6789edef483cd297978e010b40117ff1443 (patch)
tree083dbbd1391708adae4a84c8fcdf2e63e5ab5b7f
parentfa58ef5394dce9a9d9f3246ae3abbab53d1b520b (diff)
Bump version to Hugo v0.14.0v0.14
-rw-r--r--helpers/hugo.go7
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.