Skip to content

Commit

Permalink
💓 Bump to Hugo v0.123.3
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Feb 23, 2024
1 parent 89e165a commit a012f73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hugo/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from sys import argv
from sys import platform as sysplatform

HUGO_VERSION = "0.123.2"
HUGO_VERSION = "0.123.3"

FILE_EXT = ".exe" if sysplatform == "win32" else ""

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
from wheel.bdist_wheel import bdist_wheel, get_platform

# Has to be kept in sync with the version in hugo/cli.py and incantation of setup()
HUGO_VERSION = "0.123.2"
HUGO_VERSION = "0.123.3"
HUGO_RELEASE = (
f"https://github.com/gohugoio/hugo/archive/refs/tags/v{HUGO_VERSION}.tar.gz"
)
# Commit hash for current HUGO_VERSION, needs to be updated when HUGO_VERSION is updated
# Tip: git ls-remote --tags https://github.com/gohugoio/hugo v<HUGO_VERSION>
HUGO_RElEASE_COMMIT_HASH = "929b91fe75cb0d041f22b4707700dfc117115ad4"
HUGO_RElEASE_COMMIT_HASH = "a75a659f6fc0cb3a52b2b2ba666a81f79a459376"
# The pooch tool will download the tarball into the hugo_cache/ directory.
# We will point the build command to that location to build Hugo from source
HUGO_CACHE_DIR = "hugo_cache"
HUGO_SHA256 = "24927586640c42ca0c2858fd9f2834f1f1b489068b89700c3ea3ac35389d9f28"
HUGO_SHA256 = "fd4798ba32f0b835febc097c61850e60761a5e319bb1cce225590cc98917a975"
FILE_EXT = ".exe" if sys.platform == "win32" else ""

# The vendor name is used to set the vendorInfo variable in the Hugo binary
Expand Down

0 comments on commit a012f73

Please sign in to comment.