From 1b1d62fdc95415990aae8848092a6dc8dafc8fd4 Mon Sep 17 00:00:00 2001 From: hugoreleaser Date: Thu, 8 Oct 2020 17:07:29 +0000 Subject: [PATCH 1/4] releaser: Add release notes for 0.76.3 [ci skip] --- temp/0.76.3-relnotes-ready.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 temp/0.76.3-relnotes-ready.md diff --git a/temp/0.76.3-relnotes-ready.md b/temp/0.76.3-relnotes-ready.md new file mode 100644 index 000000000..eb57f63be --- /dev/null +++ b/temp/0.76.3-relnotes-ready.md @@ -0,0 +1,9 @@ + + +This is a bug-fix release with a couple of important fixes. + +* langs/i18n: Add workaround for known language, but missing plural rule error [33e9d79b](https://github.com/gohugoio/hugo/commit/33e9d79b78b32d0cc19693ab3c29ba9941d80f8f) [@bep](https://github.com/bep) [#7798](https://github.com/gohugoio/hugo/issues/7798) +* langs/i18n: Fix for bare TOML keys [fc6abc39](https://github.com/gohugoio/hugo/commit/fc6abc39c75c152780151c35bc95b12bee01b09c) [@bep](https://github.com/bep) + + + From d62bc74770eb3a5f73a73561b34c5f3351c999ca Mon Sep 17 00:00:00 2001 From: hugoreleaser Date: Thu, 8 Oct 2020 17:07:29 +0000 Subject: [PATCH 2/4] releaser: Bump versions for release of 0.76.3 [ci skip] --- common/hugo/version_current.go | 6 +++--- snap/snapcraft.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/hugo/version_current.go b/common/hugo/version_current.go index 79151cc24..89cc387cd 100644 --- a/common/hugo/version_current.go +++ b/common/hugo/version_current.go @@ -16,7 +16,7 @@ package hugo // CurrentVersion represents the current build version. // This should be the only one. var CurrentVersion = Version{ - Number: 0.77, - PatchLevel: 0, - Suffix: "-DEV", + Number: 0.76, + PatchLevel: 3, + Suffix: "", } diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 34844858e..4695b6d2d 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,12 +1,12 @@ name: hugo -version: "0.77.0-DEV" +version: "0.76.3" summary: Fast and Flexible Static Site Generator description: | Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. confinement: strict -grade: devel # "devel" or "stable" +grade: stable # "devel" or "stable" apps: hugo: From e96234590d0973e3551580a359adf2a99ccc9933 Mon Sep 17 00:00:00 2001 From: hugoreleaser Date: Thu, 8 Oct 2020 17:07:29 +0000 Subject: [PATCH 3/4] releaser: Add release notes to /docs for release of 0.76.3 [ci skip] --- docs/content/en/news/0.76.3-relnotes/index.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/content/en/news/0.76.3-relnotes/index.md diff --git a/docs/content/en/news/0.76.3-relnotes/index.md b/docs/content/en/news/0.76.3-relnotes/index.md new file mode 100644 index 000000000..1dc2d8b09 --- /dev/null +++ b/docs/content/en/news/0.76.3-relnotes/index.md @@ -0,0 +1,20 @@ + +--- +date: 2020-10-08 +title: "Hugo 0.76.3: A couple of Bug Fixes" +description: "This version fixes a couple of bugs introduced in 0.76.0." +categories: ["Releases"] +images: +- images/blog/hugo-bug-poster.png + +--- + + + +This is a bug-fix release with a couple of important fixes. + +* langs/i18n: Add workaround for known language, but missing plural rule error [33e9d79b](https://github.com/gohugoio/hugo/commit/33e9d79b78b32d0cc19693ab3c29ba9941d80f8f) [@bep](https://github.com/bep) [#7798](https://github.com/gohugoio/hugo/issues/7798) +* langs/i18n: Fix for bare TOML keys [fc6abc39](https://github.com/gohugoio/hugo/commit/fc6abc39c75c152780151c35bc95b12bee01b09c) [@bep](https://github.com/bep) + + + From af19253f434587c57e6b8d838149449680eed9ba Mon Sep 17 00:00:00 2001 From: hugoreleaser Date: Thu, 8 Oct 2020 17:20:03 +0000 Subject: [PATCH 4/4] releaser: Prepare repository for 0.77.0-DEV [ci skip] --- common/hugo/version_current.go | 6 +++--- snap/snapcraft.yaml | 4 ++-- temp/0.76.3-relnotes-ready.md | 9 --------- 3 files changed, 5 insertions(+), 14 deletions(-) delete mode 100644 temp/0.76.3-relnotes-ready.md diff --git a/common/hugo/version_current.go b/common/hugo/version_current.go index 89cc387cd..79151cc24 100644 --- a/common/hugo/version_current.go +++ b/common/hugo/version_current.go @@ -16,7 +16,7 @@ package hugo // CurrentVersion represents the current build version. // This should be the only one. var CurrentVersion = Version{ - Number: 0.76, - PatchLevel: 3, - Suffix: "", + Number: 0.77, + PatchLevel: 0, + Suffix: "-DEV", } diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 4695b6d2d..34844858e 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,12 +1,12 @@ name: hugo -version: "0.76.3" +version: "0.77.0-DEV" summary: Fast and Flexible Static Site Generator description: | Hugo is a static HTML and CSS website generator written in Go. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full HTML website. confinement: strict -grade: stable # "devel" or "stable" +grade: devel # "devel" or "stable" apps: hugo: diff --git a/temp/0.76.3-relnotes-ready.md b/temp/0.76.3-relnotes-ready.md deleted file mode 100644 index eb57f63be..000000000 --- a/temp/0.76.3-relnotes-ready.md +++ /dev/null @@ -1,9 +0,0 @@ - - -This is a bug-fix release with a couple of important fixes. - -* langs/i18n: Add workaround for known language, but missing plural rule error [33e9d79b](https://github.com/gohugoio/hugo/commit/33e9d79b78b32d0cc19693ab3c29ba9941d80f8f) [@bep](https://github.com/bep) [#7798](https://github.com/gohugoio/hugo/issues/7798) -* langs/i18n: Fix for bare TOML keys [fc6abc39](https://github.com/gohugoio/hugo/commit/fc6abc39c75c152780151c35bc95b12bee01b09c) [@bep](https://github.com/bep) - - -