Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 15:17:45 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-13 15:17:45 +0300
commit714594a8b7745f347b4684ee1911b8b541a1ce4d (patch)
tree7db337cc249f05330df4b397c2afc8548f51b60e
parentdce70fb7c5845ec5e410e4bf97c862d38cfec9a5 (diff)
releaser: Add relase notes to /docs for release of 0.22.1v0.22.1
[ci skip]
-rw-r--r--docs/content/release-notes/0.22.1-relnotes.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/docs/content/release-notes/0.22.1-relnotes.md b/docs/content/release-notes/0.22.1-relnotes.md
new file mode 100644
index 000000000..f662ed531
--- /dev/null
+++ b/docs/content/release-notes/0.22.1-relnotes.md
@@ -0,0 +1,40 @@
+
+---
+date: 2017-06-13
+title: 0.22.1
+---
+
+
+
+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)
+
+
+
+
+
+