Skip to content

Commit c6cde10

Browse files
authored
content: Update version references
1 parent 4672779 commit c6cde10

File tree

14 files changed

+24
-24
lines changed

14 files changed

+24
-24
lines changed

‎content/en/configuration/module.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ extended
7777
: (`bool`) Whether the extended edition of Hugo is required, satisfied by installing either the extended or extended/deploy edition.
7878

7979
max
80-
: (`string`) The maximum Hugo version supported, for example `0.150.0`.
80+
: (`string`) The maximum Hugo version supported, for example `0.151.0`.
8181

8282
min
8383
: (`string`) The minimum Hugo version supported, for example `0.102.0`.

‎content/en/contribute/development.md‎

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

145145
```sh
146-
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.150.0
146+
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.151.0
147147
```
148148

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

‎content/en/functions/hugo/Generator.md‎

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

1313
```go-html-template
14-
{{ hugo.Generator }} → <meta name="generator" content="Hugo 0.150.0">
14+
{{ hugo.Generator }} → <meta name="generator" content="Hugo 0.151.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 @@ params:
1111
---
1212

1313
```go-html-template
14-
{{ hugo.Version }} → 0.150.0
14+
{{ hugo.Version }} → 0.151.0
1515
```

‎content/en/functions/resources/FromString.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Let's say you need to publish a file named "site.json" in the root of your `publ
2323
```json
2424
{
2525
"build_date": "2025-07-08T13:12:19-07:00",
26-
"hugo_version": "0.150.0",
26+
"hugo_version": "0.151.0",
2727
"last_modified": "2025-07-07T22:09:13-07:00"
2828
}
2929
```

‎content/en/getting-started/usage.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ hugo version
1818
You should see something like:
1919

2020
```text
21-
hugo v0.150.0-3f5473b7d4e7377e807290c3acc89feeef1aaa71+extended linux/amd64 BuildDate=2025-09-08T13:01:12Z VendorInfo=gohugoio
21+
hugo v0.151.0-c70ab27ceb841fc9404eab5d2c985ff7595034b7+extended linux/amd64 BuildDate=2025-10-02T13:30:36Z VendorInfo=gohugoio
2222
```
2323

2424
## Display available commands

‎content/en/host-and-deploy/host-on-aws-amplify/index.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ Step 2
4040
env:
4141
variables:
4242
# Application versions
43-
DART_SASS_VERSION: 1.92.1
43+
DART_SASS_VERSION: 1.93.2
4444
GO_VERSION: 1.25.1
45-
HUGO_VERSION: 0.150.0
45+
HUGO_VERSION: 0.151.0
4646
# Time zone
4747
TZ: Europe/Oslo
4848
# Cache

‎content/en/host-and-deploy/host-on-cloudflare/index.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Step 2
5151

5252
main() {
5353

54-
DART_SASS_VERSION=1.92.1
54+
DART_SASS_VERSION=1.93.2
5555
GO_VERSION=1.25.1
56-
HUGO_VERSION=0.150.0
56+
HUGO_VERSION=0.151.0
5757
NODE_VERSION=22.18.0
5858

5959
export TZ=Europe/Oslo

‎content/en/host-and-deploy/host-on-codeberg-pages.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
runs-on: codeberg-tiny-lazy
112112
container:
113113
# Specify "hugomods/hugo:exts" if you want to always use the latest version of Hugo for building.
114-
image: "hugomods/hugo:exts-0.150.0"
114+
image: "hugomods/hugo:exts-0.151.0"
115115
steps:
116116
- name: Clone the repository
117117
uses: https://code.forgejo.org/actions/checkout@v4
@@ -201,7 +201,7 @@ jobs:
201201
runs-on: codeberg-tiny-lazy
202202
container:
203203
# Specify "hugomods/hugo:exts" if you want to always use the latest version of Hugo for building.
204-
image: "hugomods/hugo:exts-0.150.0"
204+
image: "hugomods/hugo:exts-0.151.0"
205205
steps:
206206
- name: Clone the repository
207207
uses: https://code.forgejo.org/actions/checkout@v4

‎content/en/host-and-deploy/host-on-github-pages/index.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ Step 4
7777
build:
7878
runs-on: ubuntu-latest
7979
env:
80-
DART_SASS_VERSION: 1.92.1
80+
DART_SASS_VERSION: 1.93.2
8181
GO_VERSION: 1.25.1
82-
HUGO_VERSION: 0.150.0
82+
HUGO_VERSION: 0.151.0
8383
NODE_VERSION: 22.18.0
8484
TZ: Europe/Oslo
8585
steps:

0 commit comments

Comments
 (0)