Skip to content

Commit

Permalink
update hugo and package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tfsomrat committed Jan 19, 2025
1 parent e767a2c commit 1c8485a
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
# Environment variables available to all jobs and steps in this workflow
env:
HUGO_ENV: production
HUGO_VERSION: "0.139.2"
HUGO_VERSION: "0.141.0"
GO_VERSION: "1.23.3"
NODE_VERSION: "20.0.0"
TINA_CLIENT_ID: ${{ vars.TINA_CLIENT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ stages:

variables:
HUGO_ENV: production
HUGO_VERSION: "0.139.2"
HUGO_VERSION: "0.141.0"
GO_VERSION: "1.23.3"
NODE_VERSION: "18.16.1"

Expand Down
8 changes: 4 additions & 4 deletions amplify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ frontend:
preBuild:
commands:
- yum install -y curl
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.139.2/hugo_extended_0.139.2_Linux-64bit.tar.gz"
- tar -xvf hugo_extended_0.139.2_Linux-64bit.tar.gz
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v0.141.0/hugo_extended_0.141.0_Linux-64bit.tar.gz"
- tar -xvf hugo_extended_0.141.0_Linux-64bit.tar.gz
- mv hugo /usr/local/bin/
- rm hugo_extended_0.139.2_Linux-64bit.tar.gz
- echo "HUGO 0.139.2 INSTALLED"
- rm hugo_extended_0.141.0_Linux-64bit.tar.gz
- echo "HUGO 0.141.0 INSTALLED"
- curl -LO "https://dl.google.com/go/go1.23.3.linux-amd64.tar.gz"
- tar -C /usr/local -xzf go1.23.3.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
Expand Down
2 changes: 1 addition & 1 deletion exampleSite/config/_default/module.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[hugoVersion]
extended = true
min = "0.139.2"
min = "0.141.0"

[[imports]]
path = "github.com/zeon-studio/hugoplate"
Expand Down
1 change: 1 addition & 0 deletions exampleSite/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ require (
github.com/gethugothemes/hugo-modules/table-of-contents v0.0.0-20250112030311-a0de82520a5a // indirect
github.com/gethugothemes/hugo-modules/videos v0.0.0-20250112030311-a0de82520a5a // indirect
github.com/hugomods/mermaid v0.1.4 // indirect
github.com/zeon-studio/hugoplate v0.0.0-20250116040859-e767a2ce9068 // indirect
)
2 changes: 1 addition & 1 deletion exampleSite/hugo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
######################## default configuration ####################
# The base URL of your site (required). This will be prepended to all relative URLs.
baseURL = "https://inside.themefisher.com"
baseURL = "https://example.org"
# Title of your website (required).
title = "Hugoplate"
# Your theme name
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ publish = "public"
command = "yarn project-setup; yarn build"

[build.environment]
HUGO_VERSION = "0.139.2"
HUGO_VERSION = "0.141.0"
GO_VERSION = "1.23.3"
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hugoplate",
"description": "hugo tailwindcss boilerplate",
"version": "1.18.2",
"version": "1.18.3",
"license": "MIT",
"author": "zeon.studio",
"scripts": {
Expand All @@ -22,11 +22,11 @@
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"prettier": "^3.4.2",
"prettier-plugin-go-template": "0.0.15",
"prettier-plugin-tailwindcss": "^0.6.9",
"prettier-plugin-tailwindcss": "^0.6.10",
"tailwind-bootstrap-grid": "^5.1.0",
"tailwindcss": "^3.4.17"
},
Expand Down
2 changes: 1 addition & 1 deletion theme.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ licenselink = "https://github.com/zeon-studio/hugoplate/blob/main/LICENSE"
description = "Hugoplate is a free starter template built with Hugo, and TailwindCSS, providing everything you need to jumpstart your Hugo project and save valuable time."
homepage = "https://github.com/zeon-studio/hugoplate"
demosite = "https://zeon.studio/preview?project=hugoplate"
min_version = "0.139.2"
min_version = "0.141.0"

tags = [
"blog",
Expand Down
2 changes: 1 addition & 1 deletion vercel-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# default versions
NODE_VERSION='18.16.1';
GO_VERSION='1.23.3';
HUGO_VERSION='0.139.2';
HUGO_VERSION='0.141.0';

# install Node.js
# echo "Installing Node.js $NODE_VERSION..."
Expand Down

0 comments on commit 1c8485a

Please sign in to comment.