diff options
author | hugoreleaser <[email protected]> | 2018-01-08 11:12:41 +0000 |
---|---|---|
committer | hugoreleaser <[email protected]> | 2018-01-08 11:12:41 +0000 |
commit | 238e7f7fbe123c33e33a81b79d53e25c392797b7 (patch) | |
tree | e6abb0a990d5df28f6d14ade327146a5c5cef328 | |
parent | 0aaa38544ddb1766077f199f4234bd1b1bd2eb85 (diff) | |
download | hugo-238e7f7fbe123c33e33a81b79d53e25c392797b7.tar.gz hugo-238e7f7fbe123c33e33a81b79d53e25c392797b7.zip |
releaser: Prepare repository for 0.33-DEV
[ci skip]
-rw-r--r-- | commands/new.go | 2 | ||||
-rw-r--r-- | docs/config.toml | 2 | ||||
-rw-r--r-- | helpers/hugo.go | 6 | ||||
-rw-r--r-- | snapcraft.yaml | 4 | ||||
-rw-r--r-- | temp/0.32.3-relnotes-ready.md | 19 |
5 files changed, 7 insertions, 26 deletions
diff --git a/commands/new.go b/commands/new.go index 41a24197f..d3e63800a 100644 --- a/commands/new.go +++ b/commands/new.go @@ -344,7 +344,7 @@ description = "" homepage = "http://example.com/" tags = [] features = [] -min_version = "0.32.3" +min_version = "0.32" [author] name = "" diff --git a/docs/config.toml b/docs/config.toml index c39136501..51ffc3403 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -71,7 +71,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.32.3" + release = "0.33-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 db8b87d91..7f471c94a 100644 --- a/helpers/hugo.go +++ b/helpers/hugo.go @@ -93,9 +93,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.32, - PatchLevel: 3, - Suffix: "", + Number: 0.33, + PatchLevel: 0, + Suffix: "-DEV", } func hugoVersion(version float32, patchVersion int, suffix string) string { diff --git a/snapcraft.yaml b/snapcraft.yaml index 10123b422..fe584e742 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,12 +1,12 @@ name: hugo -version: "0.32.3" +version: "0.33-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.32.3-relnotes-ready.md b/temp/0.32.3-relnotes-ready.md deleted file mode 100644 index 2df573af5..000000000 --- a/temp/0.32.3-relnotes-ready.md +++ /dev/null @@ -1,19 +0,0 @@ - - -Hugo `0.32` was a big and [really cool](https://gohugo.io/news/0.32-relnotes/) release, and the [Hugo Forum](https://discourse.gohugo.io/) has been filled with questions from people wanting to upgrade their Hugo sites to be able to use the new image processing feature etc. - -And with that we have discovered some issues, which this release should fix, mostly releated to multilingual sites: - -* Fix multihost detection for sites without language definition [8969331f](https://github.com/gohugoio/hugo/commit/8969331f5be352939883074034adac6b7086ddc8) [@bep](https://github.com/bep) [#4221](https://github.com/gohugoio/hugo/issues/4221) -* Fix hugo benchmark --renderToMemory [059e8458](https://github.com/gohugoio/hugo/commit/059e8458d690dbb9fcd3ebd58cfc61b062d3138e) [@bep](https://github.com/bep) [#4218](https://github.com/gohugoio/hugo/issues/4218) -* Fix URLs for bundle resources in multihost mode [ab82a27d](https://github.com/gohugoio/hugo/commit/ab82a27d055c3aa177821d81a45a5c6e972aa29e) [@bep](https://github.com/bep) [#4217](https://github.com/gohugoio/hugo/issues/4217) -* Fix sub-folder baseURL handling for Page resources [f25d8a9e](https://github.com/gohugoio/hugo/commit/f25d8a9e17fb65fa41dafdcbf0358853d68eaf45) [@bep](https://github.com/bep) [#4228](https://github.com/gohugoio/hugo/issues/4228) -* Avoid processing and storing same image for each language [4b04db0f](https://github.com/gohugoio/hugo/commit/4b04db0f0855a1f54895d6c93c52dcea4b1ce3ca) [@bep](https://github.com/bep) [#4231](https://github.com/gohugoio/hugo/issues/4231) -* Resources.ByType should return Resources [97c1866e](https://github.com/gohugoio/hugo/commit/97c1866e322284dec46db6f3d235807507f5b69f) [@bep](https://github.com/bep) [#4234](https://github.com/gohugoio/hugo/issues/4234) -* Report build time on config.toml change [6feb1387](https://github.com/gohugoio/hugo/commit/6feb138785eeb9e813428d0df30010d9b5fb1059) [@bep](https://github.com/bep) [#4232](https://github.com/gohugoio/hugo/issues/4232)[#4224](https://github.com/gohugoio/hugo/issues/4224) -* Fix handling of mixed-case taxonomy folders with content file [2d3189b2](https://github.com/gohugoio/hugo/commit/2d3189b22760e0a8995dae082a6bc5480f770bfe) [@bep](https://github.com/bep) [#4238](https://github.com/gohugoio/hugo/issues/4238) - - - - - |