diff --git a/content/en/configuration/module.md b/content/en/configuration/module.md
index 4a7267bd6..cc7ace16b 100644
--- a/content/en/configuration/module.md
+++ b/content/en/configuration/module.md
@@ -77,7 +77,7 @@ extended
: (`bool`) Whether the extended edition of Hugo is required, satisfied by installing either the extended or extended/deploy edition.
max
-: (`string`) The maximum Hugo version supported, for example `0.148.0`.
+: (`string`) The maximum Hugo version supported, for example `0.149.0`.
min
: (`string`) The minimum Hugo version supported, for example `0.102.0`.
diff --git a/content/en/contribute/development.md b/content/en/contribute/development.md
index 36d0f85ad..399d6f628 100644
--- a/content/en/contribute/development.md
+++ b/content/en/contribute/development.md
@@ -143,7 +143,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.148.0
+CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.149.0
```
To build and install at the latest commit on the master branch:
diff --git a/content/en/functions/hugo/Generator.md b/content/en/functions/hugo/Generator.md
index 176d8e6bf..d159c1ce2 100644
--- a/content/en/functions/hugo/Generator.md
+++ b/content/en/functions/hugo/Generator.md
@@ -11,5 +11,5 @@ params:
---
```go-html-template
-{{ hugo.Generator }} →
+{{ hugo.Generator }} →
```
diff --git a/content/en/functions/hugo/Version.md b/content/en/functions/hugo/Version.md
index 33827737a..dfba82a29 100644
--- a/content/en/functions/hugo/Version.md
+++ b/content/en/functions/hugo/Version.md
@@ -11,5 +11,5 @@ params:
---
```go-html-template
-{{ hugo.Version }} → 0.148.0
+{{ hugo.Version }} → 0.149.0
```
diff --git a/content/en/functions/resources/FromString.md b/content/en/functions/resources/FromString.md
index c86f90cbb..bbe1ddc06 100644
--- a/content/en/functions/resources/FromString.md
+++ b/content/en/functions/resources/FromString.md
@@ -23,7 +23,7 @@ Let's say you need to publish a file named "site.json" in the root of your `publ
```json
{
"build_date": "2025-07-08T13:12:19-07:00",
- "hugo_version": "0.148.0",
+ "hugo_version": "0.149.0",
"last_modified": "2025-07-07T22:09:13-07:00"
}
```
diff --git a/content/en/functions/transform/Unmarshal.md b/content/en/functions/transform/Unmarshal.md
index c7fe12d23..e05aece36 100644
--- a/content/en/functions/transform/Unmarshal.md
+++ b/content/en/functions/transform/Unmarshal.md
@@ -13,7 +13,7 @@ aliases: [/functions/transform.unmarshal]
The input can be a string or a [resource](g).
-### Options
+## Options
delimiter
: (`string`) Applicable to CSV files. The delimiter used. Default is `,`.
diff --git a/content/en/host-and-deploy/host-on-aws-amplify/index.md b/content/en/host-and-deploy/host-on-aws-amplify/index.md
index 4fd71f3f9..761b0f8aa 100644
--- a/content/en/host-and-deploy/host-on-aws-amplify/index.md
+++ b/content/en/host-and-deploy/host-on-aws-amplify/index.md
@@ -40,9 +40,9 @@ Step 2
env:
variables:
# Application versions
- DART_SASS_VERSION: 1.90.0
- GO_VERSION: 1.24.5
- HUGO_VERSION: 0.148.2
+ DART_SASS_VERSION: 1.91.0
+ GO_VERSION: 1.25.0
+ HUGO_VERSION: 0.149.0
# Time zone
TZ: Europe/Oslo
# Cache
diff --git a/content/en/host-and-deploy/host-on-cloudflare/index.md b/content/en/host-and-deploy/host-on-cloudflare/index.md
index 018c50f0a..c708b55a2 100644
--- a/content/en/host-and-deploy/host-on-cloudflare/index.md
+++ b/content/en/host-and-deploy/host-on-cloudflare/index.md
@@ -53,9 +53,9 @@ Step 2
main() {
- DART_SASS_VERSION=1.90.0
- GO_VERSION=1.24.5
- HUGO_VERSION=0.148.2
+ DART_SASS_VERSION=1.91.0
+ GO_VERSION=1.25.0
+ HUGO_VERSION=0.149.0
NODE_VERSION=22.18.0
export TZ=Europe/Oslo
diff --git a/content/en/host-and-deploy/host-on-codeberg-pages.md b/content/en/host-and-deploy/host-on-codeberg-pages.md
index 3c7e7a847..d128ec31e 100644
--- a/content/en/host-and-deploy/host-on-codeberg-pages.md
+++ b/content/en/host-and-deploy/host-on-codeberg-pages.md
@@ -111,7 +111,7 @@ jobs:
runs-on: codeberg-tiny-lazy
container:
# Specify "hugomods/hugo:exts" if you want to always use the latest version of Hugo for building.
- image: "hugomods/hugo:exts-0.148.0"
+ image: "hugomods/hugo:exts-0.149.0"
steps:
- name: Clone the repository
uses: https://code.forgejo.org/actions/checkout@v4
@@ -201,7 +201,7 @@ jobs:
runs-on: codeberg-tiny-lazy
container:
# Specify "hugomods/hugo:exts" if you want to always use the latest version of Hugo for building.
- image: "hugomods/hugo:exts-0.148.0"
+ image: "hugomods/hugo:exts-0.149.0"
steps:
- name: Clone the repository
uses: https://code.forgejo.org/actions/checkout@v4
diff --git a/content/en/host-and-deploy/host-on-github-pages/index.md b/content/en/host-and-deploy/host-on-github-pages/index.md
index dd4039dd8..c3f360682 100644
--- a/content/en/host-and-deploy/host-on-github-pages/index.md
+++ b/content/en/host-and-deploy/host-on-github-pages/index.md
@@ -77,9 +77,9 @@ Step 4
build:
runs-on: ubuntu-latest
env:
- DART_SASS_VERSION: 1.90.0
- GO_VERSION: 1.24.5
- HUGO_VERSION: 0.148.2
+ DART_SASS_VERSION: 1.91.0
+ GO_VERSION: 1.25.0
+ HUGO_VERSION: 0.149.0
NODE_VERSION: 22.18.0
TZ: Europe/Oslo
steps:
diff --git a/content/en/host-and-deploy/host-on-gitlab-pages.md b/content/en/host-and-deploy/host-on-gitlab-pages.md
index c43303804..14488d6eb 100644
--- a/content/en/host-and-deploy/host-on-gitlab-pages.md
+++ b/content/en/host-and-deploy/host-on-gitlab-pages.md
@@ -24,8 +24,8 @@ Define your [CI/CD](g) jobs by creating a `.gitlab-ci.yml` file in the root of y
```yaml {file=".gitlab-ci.yml" copy=true}
variables:
# Application versions
- DART_SASS_VERSION: 1.90.0
- HUGO_VERSION: 0.148.2
+ DART_SASS_VERSION: 1.91.0
+ HUGO_VERSION: 0.149.0
NODE_VERSION: 22.18.0
# Git
GIT_DEPTH: 0
@@ -35,7 +35,7 @@ variables:
TZ: Europe/Oslo
image:
- name: golang:1.24.5-bookworm
+ name: golang:1.25.0-bookworm
pages:
stage: deploy
diff --git a/content/en/host-and-deploy/host-on-netlify/index.md b/content/en/host-and-deploy/host-on-netlify/index.md
index cc0bf6b2b..d89d43f5b 100644
--- a/content/en/host-and-deploy/host-on-netlify/index.md
+++ b/content/en/host-and-deploy/host-on-netlify/index.md
@@ -94,8 +94,8 @@ Create a new file named `netlify.toml` in the root of your project directory. In
```toml {file="netlify.toml"}
[build.environment]
-GO_VERSION = "1.24.5"
-HUGO_VERSION = "0.148.2"
+GO_VERSION = "1.25.0"
+HUGO_VERSION = "0.149.0"
NODE_VERSION = "22.18.0"
TZ = "Europe/Oslo"
@@ -111,9 +111,9 @@ If your site requires Dart Sass to transpile Sass to CSS, the configuration file
```toml {file="netlify.toml"}
[build.environment]
-DART_SASS_VERSION = "1.90.0"
-GO_VERSION = "1.24.5"
-HUGO_VERSION = "0.148.2"
+DART_SASS_VERSION = "1.91.0"
+GO_VERSION = "1.25.0"
+HUGO_VERSION = "0.149.0"
NODE_VERSION = "22.18.0"
TZ = "Europe/Oslo"
diff --git a/content/en/host-and-deploy/host-on-render/index.md b/content/en/host-and-deploy/host-on-render/index.md
index f52e09280..3b52cbb05 100644
--- a/content/en/host-and-deploy/host-on-render/index.md
+++ b/content/en/host-and-deploy/host-on-render/index.md
@@ -35,11 +35,11 @@ Step 1
staticPublishPath: public
envVars:
- key: DART_SASS_VERSION
- value: 1.90.0
+ value: 1.91.0
- key: GO_VERSION
- value: 1.24.5
+ value: 1.25.0
- key: HUGO_VERSION
- value: 0.148.2
+ value: 0.149.0
- key: NODE_VERSION
value: 22.18.0
- key: TZ
diff --git a/content/en/host-and-deploy/host-on-vercel/index.md b/content/en/host-and-deploy/host-on-vercel/index.md
index 8d402cb87..787a33339 100644
--- a/content/en/host-and-deploy/host-on-vercel/index.md
+++ b/content/en/host-and-deploy/host-on-vercel/index.md
@@ -47,9 +47,9 @@ Step 2
main() {
- DART_SASS_VERSION=1.90.0
- GO_VERSION=1.24.5
- HUGO_VERSION=0.148.2
+ DART_SASS_VERSION=1.91.0
+ GO_VERSION=1.25.0
+ HUGO_VERSION=0.149.0
NODE_VERSION=22.18.0
export TZ=Europe/Oslo