summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/new.go2
-rw-r--r--docs/config.toml2
-rw-r--r--docs/temp/0.22.1-relnotes.md34
-rw-r--r--helpers/hugo.go2
-rw-r--r--snapcraft.yaml4
5 files changed, 39 insertions, 5 deletions
diff --git a/commands/new.go b/commands/new.go
index 964102aac..840e1e1f9 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -320,7 +320,7 @@ description = ""
homepage = "http://siteforthistheme.com/"
tags = []
features = []
-min_version = "0.21"
+min_version = "0.22.1"
[author]
name = ""
diff --git a/docs/config.toml b/docs/config.toml
index 6a48c7031..003a23774 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -9,7 +9,7 @@ pluralizeListTitles = false
[params]
description = "Documentation of Hugo, a fast and flexible static site generator built with love by spf13, bep and friends in Go"
author = "Steve Francia (spf13) and friends"
- release = "0.22.1-DEV"
+ release = "0.22.1"
[taxonomies]
tag = "tags"
diff --git a/docs/temp/0.22.1-relnotes.md b/docs/temp/0.22.1-relnotes.md
new file mode 100644
index 000000000..506762d3a
--- /dev/null
+++ b/docs/temp/0.22.1-relnotes.md
@@ -0,0 +1,34 @@
+
+
+Hugo `0.22.1` fixes a couple of issues reported after the [0.22 release](https://github.com/spf13/hugo/releases/tag/v0.22) Monday. Most importantly a fix for detecting regular subfolders below the root-sections.
+
+Also, we forgot to adapt the `permalink settings` with support for nested sections, which made that feature less useful than it could be.
+
+With this release you can configure **permalinks with sections** like this:
+
+**First level only:**
+
+```toml
+[permalinks]
+blog = ":section/:title"
+```
+
+**Nested (all levels):**
+
+```toml
+[permalinks]
+blog = ":sections/:title"
+```
+## Fixes
+
+* Fix section logic for root folders with subfolders [a30023f5](https://github.com/spf13/hugo/commit/a30023f5cbafd06034807255181a5b7b17f3c25f) [@bep](https://github.com/bep) [#3586](https://github.com/spf13/hugo/issues/3586)
+* Support sub-sections in permalink settings [1f26420d](https://github.com/spf13/hugo/commit/1f26420d392a5ab4c7b7fe1911c0268b45d01ab8) [@bep](https://github.com/bep) [#3580](https://github.com/spf13/hugo/issues/3580)
+* Adjust rlimit to 64000 [ff54b6bd](https://github.com/spf13/hugo/commit/ff54b6bddcefab45339d8dc2b13776b92bdc04b9) [@bep](https://github.com/bep) [#3582](https://github.com/spf13/hugo/issues/3582)
+* Make error on setting rlimit a warning only [629e1439](https://github.com/spf13/hugo/commit/629e1439e819a7118ae483381d4634f16d3474dd) [@bep](https://github.com/bep) [#3582](https://github.com/spf13/hugo/issues/3582)
+* Revert: Remove the rlimit tweaking on macOS" [26aa06a3](https://github.com/spf13/hugo/commit/26aa06a3db57ab7134a900d641fa2976f7971520) [@bep](https://github.com/bep) [#3582](https://github.com/spf13/hugo/issues/3582)
+
+
+
+
+
+
diff --git a/helpers/hugo.go b/helpers/hugo.go
index b18bbf58a..5fffdcf6e 100644
--- a/helpers/hugo.go
+++ b/helpers/hugo.go
@@ -64,7 +64,7 @@ func (v HugoVersion) NextPatchLevel(level int) HugoVersion {
var CurrentHugoVersion = HugoVersion{
Number: 0.22,
PatchLevel: 1,
- Suffix: "-DEV",
+ Suffix: "",
}
func hugoVersion(version float32, patchVersion int, suffix string) string {
diff --git a/snapcraft.yaml b/snapcraft.yaml
index e1b791d0d..8231cbf61 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,12 +1,12 @@
name: hugo
-version: "0.22.1-DEV"
+version: "0.22.1"
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: