summaryrefslogtreecommitdiffstats
path: root/helpers/hugo.go
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/hugo.go')
-rw-r--r--helpers/hugo.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/hugo.go b/helpers/hugo.go
index 2fda7cdc4..7000f61c8 100644
--- a/helpers/hugo.go
+++ b/helpers/hugo.go
@@ -24,16 +24,16 @@ import (
// This should be the only one
const (
// Major and minor version.
- HugoVersionNumber = 0.21
+ HugoVersionNumber = 0.20
// Increment this for bug releases
- HugoPatchVersion = 0
+ HugoPatchVersion = 1
)
// HugoVersionSuffix is the suffix used in the Hugo version string.
// It will be blank for release versions.
-const HugoVersionSuffix = "-DEV" // use this when not doing a release
-//const HugoVersionSuffix = "" // use this line when doing a release
+//const HugoVersionSuffix = "-DEV" // use this when not doing a release
+const HugoVersionSuffix = "" // use this line when doing a release
// HugoVersion returns the current Hugo version. It will include
// a suffix, typically '-DEV', if it's development version.