Skip to content

Commit fa4d610

Browse files
authored
content: Miscellaneous post-release updates for v0.153.0
1 parent b99f474 commit fa4d610

File tree

27 files changed

+47
-74
lines changed

27 files changed

+47
-74
lines changed

‎content/en/about/features.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ weight: 20
6161
## Content management
6262

6363
[Multi-dimensional content model]
64-
: Leverage a 3D content matrix to generate pages across any combination of language, role, and version from a single source. This model allows you to broadcast content across multiple site targets by defining specific intersections of these dimensions, moving beyond traditional flat structures to support complex, multi-contextual site architectures.
64+
: Leverage a content matrix to generate pages across any combination of language, role, and version from a single source. This model allows you to broadcast content across multiple site targets by defining specific intersections of these dimensions, moving beyond traditional flat structures to support complex, multi-contextual site architectures.
6565

6666
[Content adapters]
6767
: Create content adapters to dynamically add content when building your site. For example, use a content adapter to create pages from a remote data source such as JSON, TOML, YAML, or XML.

‎content/en/configuration/all.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ canonifyURLs
4040
: (`bool`) See [details](/content-management/urls/#canonical-urls) before enabling this feature. Default is `false`.
4141

4242
capitalizeListTitles
43-
: {{< new-in 0.123.3 />}}
4443
: (`bool`) Whether to capitalize automatic list titles. Applicable to section, taxonomy, and term pages. Default is `true`. Use the [`titleCaseStyle`](#titlecasestyle) setting to configure capitalization rules.
4544

4645
cascade

‎content/en/configuration/introduction.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ HUGO_FILE_LOG_FORMAT
253253
: (`string`) A format string for the file path, line number, and column number displayed when reporting errors, or when calling the `Position` method from a shortcode or Markdown render hook. Valid tokens are `:file`, `:line`, and `:col`. Default is `:file::line::col`.
254254

255255
HUGO_MEMORYLIMIT
256-
: {{< new-in 0.123.0 />}}
257256
: (`int`) The maximum amount of system memory, in gigabytes, that Hugo can use while rendering your site. Default is 25% of total system memory. Note that `HUGO_MEMORYLIMIT` is a "best effort" setting. Don't expect Hugo to build a million pages with only 1 GB of memory. You can get more information about how this behaves during the build by building with `hugo --logLevel info` and look for the `dynacache` label.
258257

259258
HUGO_NUMWORKERMULTIPLIER

‎content/en/configuration/markup.md‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ Markdown|Replaced by|Description
136136
Most of the Goldmark settings above are self-explanatory, but some require explanation.
137137

138138
duplicateResourceFiles
139-
: {{< new-in 0.123.0 />}}
140139
: (`bool`) Whether to duplicate shared page resources for each language on multilingual single-host sites. See [multilingual page resources] for details. Default is `false`.
141140

142141
> [!note]
@@ -169,7 +168,6 @@ parser.attribute.title
169168

170169
<!-- TODO: delete this on or after July 1, 2027. -->
171170
renderHooks.image.enableDefault
172-
: {{< new-in 0.123.0 />}}
173171
: Deprecated in v0.148.0. Use `renderHooks.image.useEmbedded` instead.
174172

175173
renderHooks.image.useEmbedded
@@ -183,11 +181,9 @@ renderHooks.image.useEmbedded
183181

184182
<!-- TODO: delete this on or after July 1, 2027. -->
185183
renderHooks.link.enableDefault
186-
: {{< new-in 0.123.0 />}}
187184
: Deprecated in v0.148.0. Use `renderHooks.link.useEmbedded` instead.
188185

189186
renderHooks.link.useEmbedded
190-
: {{< new-in 0.148.0 />}}
191187
: (`string`) When to use the [embedded link render hook]. One of `auto`, `never`, `always`, or `fallback`. Default is `auto`.
192188

193189
- `auto`: Automatically use the embedded link render hook for multilingual single-host sites, specifically when the [duplication of shared page resources] feature is disabled. This is the default behavior for such sites. If custom link render hooks are defined by your project, modules, or themes, these will be used instead.

‎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.152.2`.
80+
: (`string`) The maximum Hugo version supported, for example `0.153.0`.
8181

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

‎content/en/content-management/front-matter.md‎

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ outputs
9292
: (`string array`) The [output formats] to render. See [configure outputs] for more information.
9393

9494
params
95-
: {{< new-in 0.123.0 />}}
9695
: (`map`) A map of custom [page parameters].
9796

9897
pubdate
@@ -150,8 +149,6 @@ weight
150149

151150
## Parameters
152151

153-
{{< new-in 0.123.0 />}}
154-
155152
Specify custom page parameters under the `params` key in front matter:
156153

157154
{{< code-toggle file=content/example.md fm=true >}}

‎content/en/content-management/page-resources.md‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,6 @@ the `Name` and `Title` will be assigned to the resource files as follows:
193193

194194
## Multilingual
195195

196-
{{< new-in 0.123.0 />}}
197-
198196
By default, with a multilingual single-host site, Hugo does not duplicate shared page resources when building the site.
199197

200198
> [!note]

‎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.152.2
146+
CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@v0.153.0
147147
```
148148

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

‎content/en/functions/fmt/Warnidf.md‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ params:
1111
aliases: [/functions/warnidf]
1212
---
1313

14-
{{< new-in 0.123.0 />}}
15-
1614
{{% include "/_common/functions/fmt/format-string.md" %}}
1715

1816
The `warnidf` function evaluates the format string, then prints the result to the WARNING log. Unlike the [`warnf`] function, you may suppress warnings logged by the `warnidf` function by adding the message ID to the `ignoreLogs` array in your site configuration.

‎content/en/functions/go-template/range.md‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,6 @@ Unlike ranging over an array or slice, Hugo sorts by key when ranging over a map
192192

193193
### Integers
194194

195-
{{< new-in 0.123.0 />}}
196-
197195
Ranging over a positive integer `n` executes the block `n` times, with the context starting at zero and incrementing by one in each iteration.
198196

199197
```go-html-template

0 commit comments

Comments
 (0)