Skip to content

Commit f1794e8

Browse files
committed
Update version refs for Hugo and Dart Sass
1 parent 3bb0069 commit f1794e8

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

content/en/contribute/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
172172
To build and install a specific release:
173173

174174
```sh
175-
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.137.1
175+
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.141.0
176176
```
177177

178178
To build and install at the latest commit on the master branch:

content/en/functions/css/Sass.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file
144144

145145
```yaml
146146
variables:
147-
HUGO_VERSION: 0.137.1
148-
DART_SASS_VERSION: 1.80.6
147+
HUGO_VERSION: 0.141.0
148+
DART_SASS_VERSION: 1.83.4
149149
GIT_DEPTH: 0
150150
GIT_STRATEGY: clone
151151
GIT_SUBMODULE_STRATEGY: recursive
@@ -178,8 +178,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should
178178

179179
```toml
180180
[build.environment]
181-
HUGO_VERSION = "0.137.1"
182-
DART_SASS_VERSION = "1.80.6"
181+
HUGO_VERSION = "0.141.0"
182+
DART_SASS_VERSION = "1.83.4"
183183
NODE_VERSION = "22"
184184
TZ = "America/Los_Angeles"
185185

content/en/functions/hugo/Generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ action:
1111
---
1212

1313
```go-html-template
14-
{{ hugo.Generator }} → <meta name="generator" content="Hugo 0.137.1">
14+
{{ hugo.Generator }} → <meta name="generator" content="Hugo 0.141.0">
1515
```

content/en/functions/hugo/Version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ action:
1111
---
1212

1313
```go-html-template
14-
{{ hugo.Version }} → 0.137.1
14+
{{ hugo.Version }} → 0.141.0
1515
```

content/en/functions/resources/FromString.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Let's say you need to publish a file named "site.json" in the root of your publi
2323

2424
```json
2525
{
26-
"build_date": "2024-02-19T12:27:05-08:00",
27-
"hugo_version": "0.137.1",
28-
"last_modified": "2024-02-19T12:01:42-08:00"
26+
"build_date": "2025-01-16T19:14:41-08:00",
27+
"hugo_version": "0.141.0",
28+
"last_modified": "2025-01-16T19:14:46-08:00"
2929
}
3030
```
3131

content/en/functions/resources/ToCSS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file
145145

146146
```yaml
147147
variables:
148-
HUGO_VERSION: 0.137.1
149-
DART_SASS_VERSION: 1.80.6
148+
HUGO_VERSION: 0.141.0
149+
DART_SASS_VERSION: 1.83.4
150150
GIT_DEPTH: 0
151151
GIT_STRATEGY: clone
152152
GIT_SUBMODULE_STRATEGY: recursive
@@ -179,8 +179,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should
179179

180180
```toml
181181
[build.environment]
182-
HUGO_VERSION = "0.137.1"
183-
DART_SASS_VERSION = "1.80.6"
182+
HUGO_VERSION = "0.141.0"
183+
DART_SASS_VERSION = "1.83.4"
184184
NODE_VERSION = "22"
185185
TZ = "America/Los_Angeles"
186186

content/en/hosting-and-deployment/hosting-on-github/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
build:
101101
runs-on: ubuntu-latest
102102
env:
103-
HUGO_VERSION: 0.137.1
103+
HUGO_VERSION: 0.141.0
104104
steps:
105105
- name: Install Hugo CLI
106106
run: |

content/en/hosting-and-deployment/hosting-on-netlify/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Create a new file named netlify.toml in the root of your project directory. In i
103103

104104
{{< code file=netlify.toml >}}
105105
[build.environment]
106-
HUGO_VERSION = "0.137.1"
106+
HUGO_VERSION = "0.141.0"
107107
NODE_VERSION = "22"
108108
TZ = "America/Los_Angeles"
109109

@@ -116,8 +116,8 @@ If your site requires Dart Sass to transpile Sass to CSS, the configuration file
116116

117117
{{< code file=netlify.toml >}}
118118
[build.environment]
119-
HUGO_VERSION = "0.137.1"
120-
DART_SASS_VERSION = "1.80.6"
119+
HUGO_VERSION = "0.141.0"
120+
DART_SASS_VERSION = "1.83.4"
121121
NODE_VERSION = "22"
122122
TZ = "America/Los_Angeles"
123123

content/en/hugo-pipes/transpile-sass-to-css.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ To install Dart Sass for your builds on GitLab Pages, the `.gitlab-ci.yml` file
136136

137137
```yaml
138138
variables:
139-
HUGO_VERSION: 0.137.1
140-
DART_SASS_VERSION: 1.80.6
139+
HUGO_VERSION: 0.141.0
140+
DART_SASS_VERSION: 1.83.4
141141
GIT_DEPTH: 0
142142
GIT_STRATEGY: clone
143143
GIT_SUBMODULE_STRATEGY: recursive
@@ -170,8 +170,8 @@ To install Dart Sass for your builds on Netlify, the `netlify.toml` file should
170170

171171
```toml
172172
[build.environment]
173-
HUGO_VERSION = "0.137.1"
174-
DART_SASS_VERSION = "1.80.6"
173+
HUGO_VERSION = "0.141.0"
174+
DART_SASS_VERSION = "1.83.4"
175175
NODE_VERSION = "22"
176176
TZ = "America/Los_Angeles"
177177

0 commit comments

Comments
 (0)