From d09a146237e2296c4a97ce2e932c928799be8aa6 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Thu, 16 Jan 2025 19:23:46 -0800 Subject: [PATCH] Update version refs for Hugo and Dart Sass --- content/en/contribute/development.md | 2 +- content/en/functions/css/Sass.md | 8 ++++---- content/en/functions/hugo/Generator.md | 2 +- content/en/functions/hugo/Version.md | 2 +- content/en/functions/resources/FromString.md | 6 +++--- content/en/functions/resources/ToCSS.md | 8 ++++---- .../en/hosting-and-deployment/hosting-on-github/index.md | 2 +- .../en/hosting-and-deployment/hosting-on-netlify/index.md | 6 +++--- content/en/hugo-pipes/transpile-sass-to-css.md | 8 ++++---- 9 files changed, 22 insertions(+), 22 deletions(-) diff --git a/content/en/contribute/development.md b/content/en/contribute/development.md index 1680d4a46..cd2e2744d 100644 --- a/content/en/contribute/development.md +++ b/content/en/contribute/development.md @@ -172,7 +172,7 @@ CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest To build and install a specific release: ```sh -CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.137.1 +CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.141.0 ``` To build and install at the latest commit on the master branch: diff --git a/content/en/functions/css/Sass.md b/content/en/functions/css/Sass.md index 5f6d6f50c..31c4146b6 100644 --- a/content/en/functions/css/Sass.md +++ b/content/en/functions/css/Sass.md @@ -144,8 +144,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file ```yaml variables: - HUGO_VERSION: 0.137.1 - DART_SASS_VERSION: 1.80.6 + HUGO_VERSION: 0.141.0 + DART_SASS_VERSION: 1.83.4 GIT_DEPTH: 0 GIT_STRATEGY: clone GIT_SUBMODULE_STRATEGY: recursive @@ -178,8 +178,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should ```toml [build.environment] -HUGO_VERSION = "0.137.1" -DART_SASS_VERSION = "1.80.6" +HUGO_VERSION = "0.141.0" +DART_SASS_VERSION = "1.83.4" NODE_VERSION = "22" TZ = "America/Los_Angeles" diff --git a/content/en/functions/hugo/Generator.md b/content/en/functions/hugo/Generator.md index f8d20559b..17eb47e1d 100644 --- a/content/en/functions/hugo/Generator.md +++ b/content/en/functions/hugo/Generator.md @@ -11,5 +11,5 @@ action: --- ```go-html-template -{{ hugo.Generator }} → +{{ hugo.Generator }} → ``` diff --git a/content/en/functions/hugo/Version.md b/content/en/functions/hugo/Version.md index c1aee8e3f..e6e1207b8 100644 --- a/content/en/functions/hugo/Version.md +++ b/content/en/functions/hugo/Version.md @@ -11,5 +11,5 @@ action: --- ```go-html-template -{{ hugo.Version }} → 0.137.1 +{{ hugo.Version }} → 0.141.0 ``` diff --git a/content/en/functions/resources/FromString.md b/content/en/functions/resources/FromString.md index be30367db..a0be6497d 100644 --- a/content/en/functions/resources/FromString.md +++ b/content/en/functions/resources/FromString.md @@ -23,9 +23,9 @@ Let's say you need to publish a file named "site.json" in the root of your publi ```json { - "build_date": "2024-02-19T12:27:05-08:00", - "hugo_version": "0.137.1", - "last_modified": "2024-02-19T12:01:42-08:00" + "build_date": "2025-01-16T19:14:41-08:00", + "hugo_version": "0.141.0", + "last_modified": "2025-01-16T19:14:46-08:00" } ``` diff --git a/content/en/functions/resources/ToCSS.md b/content/en/functions/resources/ToCSS.md index 70d740671..b4acda579 100644 --- a/content/en/functions/resources/ToCSS.md +++ b/content/en/functions/resources/ToCSS.md @@ -145,8 +145,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file ```yaml variables: - HUGO_VERSION: 0.137.1 - DART_SASS_VERSION: 1.80.6 + HUGO_VERSION: 0.141.0 + DART_SASS_VERSION: 1.83.4 GIT_DEPTH: 0 GIT_STRATEGY: clone GIT_SUBMODULE_STRATEGY: recursive @@ -179,8 +179,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should ```toml [build.environment] -HUGO_VERSION = "0.137.1" -DART_SASS_VERSION = "1.80.6" +HUGO_VERSION = "0.141.0" +DART_SASS_VERSION = "1.83.4" NODE_VERSION = "22" TZ = "America/Los_Angeles" diff --git a/content/en/hosting-and-deployment/hosting-on-github/index.md b/content/en/hosting-and-deployment/hosting-on-github/index.md index 45adeda1f..d9ca6738c 100644 --- a/content/en/hosting-and-deployment/hosting-on-github/index.md +++ b/content/en/hosting-and-deployment/hosting-on-github/index.md @@ -100,7 +100,7 @@ jobs: build: runs-on: ubuntu-latest env: - HUGO_VERSION: 0.137.1 + HUGO_VERSION: 0.141.0 steps: - name: Install Hugo CLI run: | diff --git a/content/en/hosting-and-deployment/hosting-on-netlify/index.md b/content/en/hosting-and-deployment/hosting-on-netlify/index.md index 43af4e054..4ab5e46f9 100644 --- a/content/en/hosting-and-deployment/hosting-on-netlify/index.md +++ b/content/en/hosting-and-deployment/hosting-on-netlify/index.md @@ -103,7 +103,7 @@ Create a new file named netlify.toml in the root of your project directory. In i {{< code file=netlify.toml >}} [build.environment] -HUGO_VERSION = "0.137.1" +HUGO_VERSION = "0.141.0" NODE_VERSION = "22" TZ = "America/Los_Angeles" @@ -116,8 +116,8 @@ If your site requires Dart Sass to transpile Sass to CSS, the configuration file {{< code file=netlify.toml >}} [build.environment] -HUGO_VERSION = "0.137.1" -DART_SASS_VERSION = "1.80.6" +HUGO_VERSION = "0.141.0" +DART_SASS_VERSION = "1.83.4" NODE_VERSION = "22" TZ = "America/Los_Angeles" diff --git a/content/en/hugo-pipes/transpile-sass-to-css.md b/content/en/hugo-pipes/transpile-sass-to-css.md index cb2756a6f..c0382790a 100644 --- a/content/en/hugo-pipes/transpile-sass-to-css.md +++ b/content/en/hugo-pipes/transpile-sass-to-css.md @@ -136,8 +136,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file ```yaml variables: - HUGO_VERSION: 0.137.1 - DART_SASS_VERSION: 1.80.6 + HUGO_VERSION: 0.141.0 + DART_SASS_VERSION: 1.83.4 GIT_DEPTH: 0 GIT_STRATEGY: clone GIT_SUBMODULE_STRATEGY: recursive @@ -170,8 +170,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should ```toml [build.environment] -HUGO_VERSION = "0.137.1" -DART_SASS_VERSION = "1.80.6" +HUGO_VERSION = "0.141.0" +DART_SASS_VERSION = "1.83.4" NODE_VERSION = "22" TZ = "America/Los_Angeles"