From 9d3af655f4a16595970b692907fb5944d5acd081 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Wed, 18 Aug 2021 16:01:53 +1000 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20Hugo=20module=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++---- go.mod | 3 +++ 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 go.mod diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bc4f69e..0135c446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to Congo will be documented in this file. -Things that need attention when upgrading from a prior version are marked 🚨. +Things that need attention when upgrading from a prior version are marked ⚠️. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). @@ -16,12 +16,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - i18n support - Recent articles partial - CSS transitions +- Hugo module support ### Changed -- 🚨 Renamed parameter: `homepage.showList` -> `homepage.showRecent` -- 🚨 Renamed parameter: `homepage.listSections` -> `homepage.mainSections` -- 🚨 Consolidated author configuration parameters into `config.toml` +- ⚠️ Renamed parameter: `homepage.showList` -> `homepage.showRecent` +- ⚠️ Renamed parameter: `homepage.listSections` -> `homepage.mainSections` +- ⚠️ Consolidated author configuration parameters into `config.toml` - General style tweaks to enhance design consistency ### Fixed diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..c3b624da --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/jpanther/congo + +go 1.16