From 9dc3db12775ff615bafcf487a829b539f87af56f Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Mon, 25 Dec 2023 20:27:08 -0600 Subject: [PATCH 1/2] Update to Hugo 0.121.1 --- .devcontainer/Dockerfile | 2 +- .devcontainer/devcontainer.json | 2 +- netlify.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 139b40d..63f1f4b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,7 +2,7 @@ ARG VARIANT="20" FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT} -ARG HUGO_VERSION="0.110.0" +ARG HUGO_VERSION="0.121.1" ARG HUGO_ARCH="64bit" RUN hugo_url="https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}" \ diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b7399aa..c9bb89e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,7 +4,7 @@ "dockerfile": "Dockerfile", "args": { "VARIANT": "20", - "HUGO_VERSION": "0.110.0", + "HUGO_VERSION": "0.121.1", "HUGO_ARCH": "64bit" } }, diff --git a/netlify.toml b/netlify.toml index 84236b0..5a5d7c9 100644 --- a/netlify.toml +++ b/netlify.toml @@ -3,7 +3,7 @@ publish = "public" [build.environment] - HUGO_VERSION = "0.110.0" + HUGO_VERSION = "0.121.1" [[headers]] for = "/*" From a726dfcbdaf29eb2af9df795bae4ad5f556de49f Mon Sep 17 00:00:00 2001 From: Evan Sosenko Date: Mon, 25 Dec 2023 20:29:27 -0600 Subject: [PATCH 2/2] Disable rss --- hugo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo.toml b/hugo.toml index b3de983..2f1c491 100644 --- a/hugo.toml +++ b/hugo.toml @@ -3,7 +3,7 @@ languageCode = 'en-US' title = 'Evan Sosenko' theme = 'default' enableRobotsTXT = true -disableKinds = ["taxonomy", "term"] +disableKinds = ["rss", "taxonomy", "term"] [params] author = "Evan Sosenko"