diff options
Diffstat (limited to 'helpers')
-rw-r--r-- | helpers/hugo.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/helpers/hugo.go b/helpers/hugo.go index 9ff738905..14735b12a 100644 --- a/helpers/hugo.go +++ b/helpers/hugo.go @@ -123,9 +123,9 @@ func (v HugoVersion) NextPatchLevel(level int) HugoVersion { // CurrentHugoVersion represents the current build version. // This should be the only one. var CurrentHugoVersion = HugoVersion{ - Number: 0.40, - PatchLevel: 2, - Suffix: "", + Number: 0.41, + PatchLevel: 0, + Suffix: "-DEV", } func hugoVersion(version float32, patchVersion int, suffix string) string { |