Skip to content

Commit d958b63

Browse files
committed
content: Updates for v0.161.0
1 parent 4099f07 commit d958b63

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
lines changed

content/en/_common/installation/01-editions.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,21 @@ _comment: Do not remove front matter.
66

77
Hugo is available in several editions. Use the standard edition unless you need additional features.
88

9-
Feature|standard|deploy (1)|extended|extended/deploy
9+
Feature|standard|deploy (1)|extended (2)|extended/deploy (3)
1010
:--|:-:|:-:|:-:|:-:
1111
Core features|:heavy_check_mark:|:heavy_check_mark:|:heavy_check_mark:|:heavy_check_mark:
12-
Direct cloud deployment (2)|:x:|:heavy_check_mark:|:x:|:heavy_check_mark:
13-
LibSass support (3)|:x:|:x:|:heavy_check_mark:|:heavy_check_mark:
12+
Direct cloud deployment (4)|:x:|:heavy_check_mark:|:x:|:heavy_check_mark:
13+
LibSass support (5)|:x:|:x:|:heavy_check_mark:|:heavy_check_mark:
1414

1515
(1) {{< new-in v0.159.2 />}}
1616

17-
(2) Deploy your site directly to a Google Cloud Storage bucket, an AWS S3 bucket, or an Azure Storage container. See&nbsp;[details].
17+
(2) {{< deprecated-in v0.161.0 />}} Use the standard edition instead.
1818

19-
(3) [Transpile Sass to CSS] via embedded LibSass. Note that embedded LibSass was deprecated in v0.153.0 and will be removed in a future release. Use the [Dart Sass] transpiler instead, which is compatible with any edition.
19+
(3) {{< deprecated-in v0.161.0 />}} Use the deploy edition instead.
20+
21+
(4) Deploy your site directly to a Google Cloud Storage bucket, an AWS S3 bucket, or an Azure Storage container. See&nbsp;[details].
22+
23+
(5) [Transpile Sass to CSS] via embedded LibSass. Note that embedded LibSass was deprecated in v0.153.0 and will be removed in a future release. Use the [Dart Sass] transpiler instead, which is compatible with any edition.
2024

2125
[dart sass]: /functions/css/sass/#dart-sass
2226
[transpile sass to css]: /functions/css/sass/

content/en/_common/installation/04-build-from-source.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ CGO_ENABLED=0 go install -tags withdeploy github.com/gohugoio/hugo@latest
2929

3030
### Extended edition
3131

32+
{{< deprecated-in v0.161.0 />}} Build the standard edition instead.
33+
3234
To build and install the extended edition, first install a C compiler such as [GCC] or [Clang] and then run the following command:
3335

3436
```sh
@@ -37,6 +39,8 @@ CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
3739

3840
### Extended/deploy edition
3941

42+
{{< deprecated-in v0.161.0 />}} Build the deploy edition instead.
43+
4044
To build and install the extended/deploy edition, first install a C compiler such as [GCC] or [Clang] and then run the following command:
4145

4246
```sh

content/en/contribute/development.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,16 @@ Step 5
8282

8383
To build and install the extended edition, first install a C compiler such as [GCC] or [Clang] and then run the following command:
8484

85+
{{< deprecated-in v0.161.0 />}} Build the standard edition instead.
86+
8587
```sh
8688
CGO_ENABLED=1 go install -tags extended
8789
```
8890

8991
To build and install the extended/deploy edition, first install a C compiler such as [GCC] or [Clang] and then run the following command:
9092

93+
{{< deprecated-in v0.161.0 />}} Build the deploy edition instead.
94+
9195
```sh
9296
CGO_ENABLED=1 go install -tags extended,withdeploy
9397
```

content/en/installation/windows.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,26 @@ weight: 30
1919

2020
### Chocolatey
2121

22-
[Chocolatey] is a free and open-source package manager for Windows. To install the extended edition of Hugo:
22+
[Chocolatey] is a free and open-source package manager for Windows. To install the standard edition:
2323

2424
```sh
25-
choco install hugo-extended
25+
choco install hugo
2626
```
2727

2828
### Scoop
2929

30-
[Scoop] is a free and open-source package manager for Windows. To install the extended edition of Hugo:
30+
[Scoop] is a free and open-source package manager for Windows. To install the standard edition:
3131

3232
```sh
33-
scoop install hugo-extended
33+
scoop install hugo
3434
```
3535

3636
### Winget
3737

38-
[Winget] is Microsoft's official free and open-source package manager for Windows. To install the extended edition of Hugo:
38+
[Winget] is Microsoft's official free and open-source package manager for Windows. To install the standard edition:
3939

4040
```sh
41-
winget install Hugo.Hugo.Extended
42-
```
43-
44-
To uninstall the extended edition of Hugo:
45-
46-
```sh
47-
winget uninstall --name "Hugo (Extended)"
41+
winget install Hugo.Hugo
4842
```
4943

5044
{{% include "/_common/installation/04-build-from-source.md" %}}

0 commit comments

Comments
 (0)