diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index be1c0be4..38cecc44 100755 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }} diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 54391f71..47860ac7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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" diff --git a/amplify.yml b/amplify.yml index 7e6ba7a0..d3c83b26 100644 --- a/amplify.yml +++ b/amplify.yml @@ -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 diff --git a/exampleSite/config/_default/module.toml b/exampleSite/config/_default/module.toml index 39560553..d8f6af2f 100644 --- a/exampleSite/config/_default/module.toml +++ b/exampleSite/config/_default/module.toml @@ -1,6 +1,6 @@ [hugoVersion] extended = true -min = "0.139.2" +min = "0.141.0" [[imports]] path = "github.com/zeon-studio/hugoplate" diff --git a/exampleSite/go.mod b/exampleSite/go.mod index 5040f869..a04d906d 100644 --- a/exampleSite/go.mod +++ b/exampleSite/go.mod @@ -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 ) diff --git a/exampleSite/hugo.toml b/exampleSite/hugo.toml index b25690d0..055fc750 100755 --- a/exampleSite/hugo.toml +++ b/exampleSite/hugo.toml @@ -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 diff --git a/netlify.toml b/netlify.toml index c660aea8..d6a9c373 100755 --- a/netlify.toml +++ b/netlify.toml @@ -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" diff --git a/package.json b/package.json index 7f7fb3ba..a033b080 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hugoplate", "description": "hugo tailwindcss boilerplate", - "version": "1.18.2", + "version": "1.18.3", "license": "MIT", "author": "zeon.studio", "scripts": { @@ -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" }, diff --git a/theme.toml b/theme.toml index 332383cc..56ed7cc8 100644 --- a/theme.toml +++ b/theme.toml @@ -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", diff --git a/vercel-build.sh b/vercel-build.sh index 03a070dc..5419526f 100755 --- a/vercel-build.sh +++ b/vercel-build.sh @@ -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..."