diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-04-13 16:19:50 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-04-13 16:19:50 +0200 |
commit | 5e2e62d97f8ada79b1531cdae1dd3f7267abe0b0 (patch) | |
tree | 908ed42dfa30840bb4fec3d8f259fc7682532de7 /helpers | |
parent | 8ac1fcd0ceb5d2e55e16a9caa7f6f0d646a07668 (diff) | |
download | hugo-5e2e62d97f8ada79b1531cdae1dd3f7267abe0b0.tar.gz hugo-5e2e62d97f8ada79b1531cdae1dd3f7267abe0b0.zip |
Get versions back to 0.20-DEV
This reverts commit 8ac1fcd0ceb5d2e55e16a9caa7f6f0d646a07668.
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/hugo.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/hugo.go b/helpers/hugo.go index 7000f61c8..2fda7cdc4 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.20 + HugoVersionNumber = 0.21 // Increment this for bug releases - HugoPatchVersion = 1 + HugoPatchVersion = 0 ) // 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. |