From f284191b0580cb345702d3126492effde9ab1c08 Mon Sep 17 00:00:00 2001 From: agriyakhetarpal <74401230+agriyakhetarpal@users.noreply.github.com> Date: Fri, 13 Mar 2026 16:39:42 +0000 Subject: [PATCH] Update Hugo to v0.153.2 --- 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 25660a8..7de98e3 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.153.1" +HUGO_VERSION = "0.153.2" 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 2e458b0..91e8843 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ # ------ Hugo build configuration and constants ------------------------------------ # Also update hugo/cli.py -HUGO_VERSION = "0.153.1" +HUGO_VERSION = "0.153.2" # 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