From 1979c71246e2270b8c284077ba68ed8605db6f1d Mon Sep 17 00:00:00 2001 From: rburgst Date: Fri, 26 Jul 2019 06:55:54 +0200 Subject: [PATCH] fix parse error in theme.toml Otherwise I am getting ``` Error: failed to read module config for "ananke" in "/builds/rburgst/focusgtdapp-web/themes/ananke/theme.toml": unmarshal failed: Near line 11 (last key parsed 'min_version'): Invalid float value: "0.30.2" ``` --- theme.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme.toml b/theme.toml index 1397d76..9b041d9 100755 --- a/theme.toml +++ b/theme.toml @@ -8,7 +8,7 @@ description = "A Base theme for building full featured Hugo sites" homepage = "https://github.com/budparr/gohugo-theme-ananke" tags = ["website", "starter", "responsive", "Disqus", "blog", "Tachyons", "Multilingual"] features = ["posts", "shortcodes", "related content", "comments"] -min_version = 0.30.2 +min_version = 0.31 [author] name = "Bud Parr"