mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
helpers: Fix GoDoc in Hugo version constants
This commit is contained in:
parent
a7953e25bb
commit
3e77886aad
1 changed files with 5 additions and 1 deletions
|
@ -17,8 +17,12 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
)
|
)
|
||||||
|
|
||||||
// this should be the only one
|
// The Hugo version number.
|
||||||
|
// This should be the only one
|
||||||
const HugoVersionNumber = 0.16
|
const HugoVersionNumber = 0.16
|
||||||
|
|
||||||
|
// This is the suffix used in the Hugo version string.
|
||||||
|
// This will be blank for release versions.
|
||||||
const HugoVersionSuffix = "-DEV" // blank this when doing a release
|
const HugoVersionSuffix = "-DEV" // blank this when doing a release
|
||||||
|
|
||||||
// HugoVersion returns the current Hugo version. It will include
|
// HugoVersion returns the current Hugo version. It will include
|
||||||
|
|
Loading…
Reference in a new issue