This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow-site.git
The following commit(s) were added to refs/heads/main by this push:
new acf86ae0e5 Update Hugo version requirement in CONTRIBUTING.md (#1351)
acf86ae0e5 is described below
commit acf86ae0e518aa5d4dd1385b421258a66e4846ee
Author: Yeonguk Choo <[email protected]>
AuthorDate: Sat Dec 27 15:27:02 2025 +0900
Update Hugo version requirement in CONTRIBUTING.md (#1351)
---
CONTRIBUTE.md | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md
index 9485999b79..1580620f6c 100644
--- a/CONTRIBUTE.md
+++ b/CONTRIBUTE.md
@@ -68,7 +68,7 @@ The following applications must be installed to use the
project:
* docker (for the shell language linter)
* Node 22
* Yarn
-* Hugo
+* Hugo >= 0.146.0
It is also worth adding SSH keys for the `github.com` server to trusted ones.
It is necessary to clone repositories. You can do this using following command:
```bash
@@ -111,6 +111,11 @@ To install hugo on Debian, run the following command:
sudo apt install hugo -y
```
+To verify your Hugo version meets the requirement (>= 0.146.0), run:
+```bash
+hugo version
+```
+
**macOS installation**
To install git on macOS, install the XCode Command Line Tools with the
following command:
@@ -123,6 +128,11 @@ Then, install [Homebrew](https://brew.sh). Once that has
completed, you can inst
brew install hugo
```
+To verify your Hugo version meets the requirement (>= 0.146.0), run:
+```bash
+hugo version
+```
+
To install Node 22, first install the [Node version
manager](https://github.com/nvm-sh/nvm), `nvm`. Then, install Node 22 with
these commands:
```bash