Skip to content

Commit

Permalink
🐉 Bump to Hugo 0.123.2
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Feb 22, 2024
1 parent ea708bf commit cbe5878
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.1"
HUGO_VERSION = "0.123.2"

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.1"
HUGO_VERSION = "0.123.2"
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 = "3f8434a62fc91a50f4e5bd43a4435d2d301844ff"
HUGO_RElEASE_COMMIT_HASH = "929b91fe75cb0d041f22b4707700dfc117115ad4"
# 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 = "2ef7ced2864abc5449508a260f54aa7deeb59a46b5328c4e2cb6d4dea15a2392"
HUGO_SHA256 = "24927586640c42ca0c2858fd9f2834f1f1b489068b89700c3ea3ac35389d9f28"
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 cbe5878

Please sign in to comment.