From 282294d4abad98b507de10721b5b008b9b1a4bed Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 27 Aug 2024 09:56:12 +0200 Subject: [PATCH] chore: bump min required hugo version to 0.124 (#873) BREAKING CHANGE: The min required Hugo version was bumped to v0.124 to drop deprecated vars `.Site.IsMultiLingual` and `.Site.Social`. For more details, see [#862](https://github.com/thegeeklab/hugo-geekdoc/pull/862). --- .nvmrc | 1 + README.md | 2 +- exampleSite/config/_default/config.yaml | 1 + exampleSite/content/en/_index.md | 2 +- theme.toml | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..b009dfb --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +lts/* diff --git a/README.md b/README.md index 99358d8..b03365f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Geekdoc [![Build Status](https://ci.thegeeklab.de/api/badges/thegeeklab/hugo-geekdoc/status.svg)](https://ci.thegeeklab.de/repos/thegeeklab/hugo-geekdoc) -[![Hugo Version](https://img.shields.io/badge/hugo-0.112-blue.svg)](https://gohugo.io) +[![Hugo Version](https://img.shields.io/badge/hugo-0.124-blue.svg)](https://gohugo.io) [![GitHub release](https://img.shields.io/github/v/release/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/releases/latest) [![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/graphs/contributors) [![License: MIT](https://img.shields.io/github/license/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE) diff --git a/exampleSite/config/_default/config.yaml b/exampleSite/config/_default/config.yaml index 53de5ee..f848cbb 100644 --- a/exampleSite/config/_default/config.yaml +++ b/exampleSite/config/_default/config.yaml @@ -41,4 +41,5 @@ outputs: security: exec: allow: + - "^git$" - "^asciidoctor$" diff --git a/exampleSite/content/en/_index.md b/exampleSite/content/en/_index.md index 20682f1..ca15911 100644 --- a/exampleSite/content/en/_index.md +++ b/exampleSite/content/en/_index.md @@ -9,7 +9,7 @@ geekdocAnchor: false [![Build Status](https://ci.thegeeklab.de/api/badges/thegeeklab/hugo-geekdoc/status.svg)](https://ci.thegeeklab.de/repos/thegeeklab/hugo-geekdoc) -[![Hugo Version](https://img.shields.io/badge/hugo-0.112-blue.svg)](https://gohugo.io) +[![Hugo Version](https://img.shields.io/badge/hugo-0.124-blue.svg)](https://gohugo.io) [![GitHub release](https://img.shields.io/github/v/release/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/releases/latest) [![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/graphs/contributors) [![License: MIT](https://img.shields.io/github/license/thegeeklab/hugo-geekdoc)](https://github.com/thegeeklab/hugo-geekdoc/blob/main/LICENSE) diff --git a/theme.toml b/theme.toml index 90b7cf5..b9e974a 100644 --- a/theme.toml +++ b/theme.toml @@ -5,7 +5,7 @@ description = "Hugo theme made for documentation" homepage = "https://geekdocs.de/" demosite = "https://geekdocs.de/" tags = ["docs", "documentation", "responsive", "simple"] -min_version = "0.112.0" +min_version = "0.124" [author] name = "Robert Kaussow"