From b6227c04e9154b3984e55a192029b29637adc1a3 Mon Sep 17 00:00:00 2001 From: agriyakhetarpal <74401230+agriyakhetarpal@users.noreply.github.com> Date: Mon, 16 Mar 2026 01:06:57 +0000 Subject: [PATCH] Update Hugo to v0.154.1 --- hugo/cli.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hugo/cli.py b/hugo/cli.py index 024cb81..681f6d7 100644 --- a/hugo/cli.py +++ b/hugo/cli.py @@ -10,7 +10,7 @@ from pathlib import Path from sys import platform as sysplatform -HUGO_VERSION = "0.154.0" +HUGO_VERSION = "0.154.1" FILE_EXT = ".exe" if sysplatform == "win32" else "" HUGO_PLATFORM = {"darwin": "darwin", "linux": "linux", "win32": "windows"}[sysplatform] diff --git a/setup.py b/setup.py index f622657..fb4b399 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ # ------ Hugo build configuration and constants ------------------------------------ # Also update hugo/cli.py -HUGO_VERSION = "0.154.0" +HUGO_VERSION = "0.154.1" # The Go toolchain will download the tarball into the hugo_cache/ directory. # We will point the build command to that location to build Hugo from source