diff --git a/config.toml b/config.toml index c93ab5cf8..93256cbf1 100644 --- a/config.toml +++ b/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.1" + release = "0.32.4" ## 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/content/content-management/multilingual.md b/content/content-management/multilingual.md index 189207ca6..31d409109 100644 --- a/content/content-management/multilingual.md +++ b/content/content-management/multilingual.md @@ -13,7 +13,7 @@ menu: weight: 150 weight: 150 #rem draft: false -aliases: [/content/multilingual/,/content-management/multilingual/] +aliases: [/content/multilingual/,/content-management/multilingual/,/tutorials/create-a-multilingual-site/] toc: true --- @@ -34,14 +34,12 @@ help = "Help" [Languages.en] title = "My blog" weight = 1 -[Languages.en.params] linkedin = "english-link" [Languages.fr] copyright = "Tout est à moi" title = "Mon blog" weight = 2 -[Languages.fr.params] linkedin = "lien-francais" [Languages.fr.navigation] help = "Aide" diff --git a/content/getting-started/installing.md b/content/getting-started/installing.md index 0375ceead..cc3783353 100644 --- a/content/getting-started/installing.md +++ b/content/getting-started/installing.md @@ -66,7 +66,7 @@ choco install hugo -confirm #### Prerequisite Tools * [Git][installgit] -* [Go 1.5+][installgo] +* [Go (latest or previous version)][installgo] * [govendor][] #### Vendored Dependencies diff --git a/content/news/0.32.2-relnotes-ready.md b/content/news/0.32.2-relnotes-ready.md new file mode 100644 index 000000000..5d33df6ef --- /dev/null +++ b/content/news/0.32.2-relnotes-ready.md @@ -0,0 +1,24 @@ + +--- +date: 2018-01-03 +title: "0.32.2: One bugfix" +description: "Fixes one issue with publishing of processed images when no cache." +slug: "0.32.2-relnotes" +categories: ["Releases"] +images: +- images/blog/hugo-bug-poster.png + +--- + + + +This is a bug-fix release with one important fix. + + +* Handle publish of processed images to /public on fresh build with no image cache in /resources (as reported by one person in a Netlify build) [196da49c](https://github.com/gohugoio/hugo/commit/196da49c9d906fbae6d389fdd32b80c27cb38de4) [@bep](https://github.com/bep) [#4213](https://github.com/gohugoio/hugo/issues/4213) + + + + + + diff --git a/content/news/0.32.3-relnotes-ready.md b/content/news/0.32.3-relnotes-ready.md new file mode 100644 index 000000000..c22bbc83b --- /dev/null +++ b/content/news/0.32.3-relnotes-ready.md @@ -0,0 +1,31 @@ + +--- +date: 2018-01-08 +title: "Hugo 0.32.3: Some important bug fixes" +description: "Fixes multilingual resource (images etc.) handling etc." +slug: "0.32.3-relnotes" +categories: ["Releases"] +images: +- images/blog/hugo-bug-poster.png + +--- + + + +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) + + + + + diff --git a/content/news/0.32.4-relnotes-ready.md b/content/news/0.32.4-relnotes-ready.md new file mode 100644 index 000000000..2e1fc3757 --- /dev/null +++ b/content/news/0.32.4-relnotes-ready.md @@ -0,0 +1,21 @@ + +--- +date: 2018-01-11 +title: "0.32.4: Two bugfixes" +description: "Fixes non-ASCII path handling for Page resources." +slug: "0.32.4-relnotes" +categories: ["Releases"] +images: +- images/blog/hugo-bug-poster.png +--- + +This is a bug-fix release with two of important fixes. + +* Fix non-ASCII path handling for Page resources [f0eecc6a](https://github.com/gohugoio/hugo/commit/f0eecc6a4f541838e9930c98bc982546f65c7a4f) [@bep](https://github.com/bep) [#4241](https://github.com/gohugoio/hugo/issues/4241) +* Fix `--cleanDestinationDir` [5235a5bf](https://github.com/gohugoio/hugo/commit/5235a5bf5ef44b3789341e1d25b681a7bb14771a) [@biodranik](https://github.com/biodranik) [#4246](https://github.com/gohugoio/hugo/issues/4246)[#4248](https://github.com/gohugoio/hugo/issues/4248) + + + + + + diff --git a/data/homepagetweets.toml b/data/homepagetweets.toml index 67bf7b4bd..e5dbbefac 100644 --- a/data/homepagetweets.toml +++ b/data/homepagetweets.toml @@ -1,3 +1,17 @@ +[[tweet]] +name = "Jens Munch" +twitter_handle = "@jensamunch" +quote = "Hugo is really, really incredible... Now does resizing/resampling of images as well! Crazy that something so fast can be a static site generator... Amazing open-source project." +link = "https://twitter.com/jensamunch/status/948533063537086464" +date = 2018-01-03T04:00:00Z + +[[tweet]] +name = "carriecoxwell" +twitter_handle = "@carriecoxwell" +quote = "Having a lot of fun with @GoHugoIO! It's exactly what I didn't even know I wanted." +link = "https://twitter.com/carriecoxwell/status/948402470144872448" +date = 2018-01-03T03:00:00Z + [[tweet]] name = "STOQE" twitter_handle = "@STOQE" diff --git a/netlify.toml b/netlify.toml index 901acdbb1..563f1e0a7 100644 --- a/netlify.toml +++ b/netlify.toml @@ -3,15 +3,15 @@ command = "hugo" [context.production.environment] - HUGO_VERSION = "0.32.1" + HUGO_VERSION = "0.32.4" HUGO_ENV = "production" HUGO_ENABLEGITINFO = "true" [context.deploy-preview.environment] - HUGO_VERSION = "0.32.1" + HUGO_VERSION = "0.32.4" [context.branch-deploy.environment] - HUGO_VERSION = "0.32.1" + HUGO_VERSION = "0.32.4" [context.next.environment] HUGO_BASEURL = "https://next--gohugoio.netlify.com/"