diff --git a/commands/new.go b/commands/new.go index 09b581ee0..c4f56fec9 100644 --- a/commands/new.go +++ b/commands/new.go @@ -344,7 +344,7 @@ description = "" homepage = "http://example.com/" tags = [] features = [] -min_version = "0.38.2" +min_version = "0.38" [author] name = "" diff --git a/docs/config.toml b/docs/config.toml index c09d31ef3..4a6950a24 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -70,7 +70,7 @@ twitter = "GoHugoIO" [params] description = "The world’s fastest framework for building websites" ## Used for views in rendered HTML (i.e., rather than using the .Hugo variable) - release = "0.38.2" + release = "0.39-DEV" ## Setting this to true will add a "noindex" to *EVERY* page on the site removefromexternalsearch = false ## Gh repo for site footer (include trailing slash) diff --git a/helpers/hugo.go b/helpers/hugo.go index 96882cd1f..914b8de3a 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.38, - PatchLevel: 2, - Suffix: "", + Number: 0.39, + PatchLevel: 0, + Suffix: "-DEV", } func hugoVersion(version float32, patchVersion int, suffix string) string { diff --git a/snapcraft.yaml b/snapcraft.yaml index 8868c10e1..66c3ae76a 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,12 +1,12 @@ name: hugo -version: "0.38.2" +version: "0.39-DEV" summary: Fast and Flexible Static Site Generator description: | Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. confinement: strict -grade: stable # "devel" or "stable" +grade: devel # "devel" or "stable" apps: hugo: diff --git a/temp/0.38.2-relnotes-ready.md b/temp/0.38.2-relnotes-ready.md deleted file mode 100644 index 5061344ce..000000000 --- a/temp/0.38.2-relnotes-ready.md +++ /dev/null @@ -1,15 +0,0 @@ - - -This is a bug-fix release with a couple of important fixes: - - -* Fix handling of the `--contentDir` and possibly other related flags [080302eb](https://github.com/gohugoio/hugo/commit/080302eb8757fd94ccbd6bf99103432cd98e716c) [@bep](https://github.com/bep) [#4589](https://github.com/gohugoio/hugo/issues/4589) -* Fix handling of content files with "." in them [2817e842](https://github.com/gohugoio/hugo/commit/2817e842407c8dcbfc738297ab634392fcb41ce1) [@bep](https://github.com/bep) [#4559](https://github.com/gohugoio/hugo/issues/4559) - - -Also in this release: - -* Set .Parent in bundled pages to its owner [6792d86a](https://github.com/gohugoio/hugo/commit/6792d86ad028571c684a776c5f00e0107838c955) [@bep](https://github.com/bep) [#4582](https://github.com/gohugoio/hugo/issues/4582) - - -