summaryrefslogtreecommitdiffstats
path: root/docs/content/en/news
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-03-09 20:21:17 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-03-09 20:21:17 +0100
commit6b61f2a5bbd3f7371775b94ae539d82896e686c9 (patch)
treea5f5d312d20a74709021cc434e3ec9f25f1e7782 /docs/content/en/news
parent6cceef65c2f4b7c262bf67a249867658112b6de4 (diff)
parent14e369b961943a0b977776899e24e8bea63834df (diff)
Diffstat (limited to 'docs/content/en/news')
-rw-r--r--docs/content/en/news/0.65.0-relnotes/hugo-65-poster-featured.pngbin0 -> 115945 bytes
-rw-r--r--docs/content/en/news/0.65.0-relnotes/index.md16
-rw-r--r--docs/content/en/news/0.65.0-relnotes/pg-admin-tos.pngbin0 -> 65614 bytes
-rw-r--r--docs/content/en/news/0.66.0-relnotes/hugo-66-poster-featured.pngbin0 -> 75588 bytes
-rw-r--r--docs/content/en/news/0.66.0-relnotes/index.md8
5 files changed, 17 insertions, 7 deletions
diff --git a/docs/content/en/news/0.65.0-relnotes/hugo-65-poster-featured.png b/docs/content/en/news/0.65.0-relnotes/hugo-65-poster-featured.png
new file mode 100644
index 000000000..a311df0cb
--- /dev/null
+++ b/docs/content/en/news/0.65.0-relnotes/hugo-65-poster-featured.png
Binary files differ
diff --git a/docs/content/en/news/0.65.0-relnotes/index.md b/docs/content/en/news/0.65.0-relnotes/index.md
index 65d7e9eec..1a2edb907 100644
--- a/docs/content/en/news/0.65.0-relnotes/index.md
+++ b/docs/content/en/news/0.65.0-relnotes/index.md
@@ -1,12 +1,12 @@
---
date: 2020-02-20
-title: "0.65.0"
-description: "0.65.0"
+title: "0.65.0: Hugo Reloaded!"
+description: "Draft, expire, resource bundling, and fine grained publishing control for any page. And it's faster."
categories: ["Releases"]
---
- **Hugo 0.65** generalizes how a page is packaged and published to be applicable to **any page**. This should solve some of the most common issues we see people ask and talk about on the [issue tracker](https://github.com/gohugoio/hugo/issues) and on the [forum](https://discourse.gohugo.io/).
+**Hugo 0.65** generalizes how a page is packaged and published to be applicable to **any page**. This should solve some of the most common issues we see people ask and talk about on the [issue tracker](https://github.com/gohugoio/hugo/issues) and on the [forum](https://discourse.gohugo.io/).
## Release Highlights
@@ -39,6 +39,16 @@ Note that all front matter keywords can be set in the [cascade](https://gohugo.i
We have also upgraded to the latest LibSass (v3.6.3). Nothing remarkable functional new here, but it makes Hugo ready for the upcoming [Dart Backport](https://github.com/sass/libsass/pull/2918).
+And finally, we have added a `GetTerms` method on `Page`, making listing the terms defined on this page in the given taxonomy much simpler:
+
+```go-html-template
+<ul>
+ {{ range (.GetTerms "tags") }}
+ <li><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
+ {{ end }}
+</ul>
+```
+
### New in Hugo Modules
There are several improvements to the tooling used in [Hugo Modules](https://gohugo.io/hugo-modules/). One bug fix, but also some improvements to make it easier to manage:
diff --git a/docs/content/en/news/0.65.0-relnotes/pg-admin-tos.png b/docs/content/en/news/0.65.0-relnotes/pg-admin-tos.png
new file mode 100644
index 000000000..fc2f4e34d
--- /dev/null
+++ b/docs/content/en/news/0.65.0-relnotes/pg-admin-tos.png
Binary files differ
diff --git a/docs/content/en/news/0.66.0-relnotes/hugo-66-poster-featured.png b/docs/content/en/news/0.66.0-relnotes/hugo-66-poster-featured.png
new file mode 100644
index 000000000..fcdc707ce
--- /dev/null
+++ b/docs/content/en/news/0.66.0-relnotes/hugo-66-poster-featured.png
Binary files differ
diff --git a/docs/content/en/news/0.66.0-relnotes/index.md b/docs/content/en/news/0.66.0-relnotes/index.md
index 75ee5e7b7..6fdeec948 100644
--- a/docs/content/en/news/0.66.0-relnotes/index.md
+++ b/docs/content/en/news/0.66.0-relnotes/index.md
@@ -1,19 +1,19 @@
---
date: 2020-03-03
-title: "0.66.0"
-description: "0.66.0"
+title: "Hugo 0.66.0: PostCSS Edition"
+description: "Native inline, recursive import support in PostCSS/Tailwind, \"dependency-less\" builds, and more …"
categories: ["Releases"]
---
- This relase adds [inline `@import`](http://localhost:1313/hugo-pipes/postcss/#options) support to `resources.PostCSS`, with imports relative to Hugo's virtual, composable file system. Another useful addition is the new `build` [configuration section](http://localhost:1313/getting-started/configuration/#configure-build). As an example in `config.toml`:
+This release adds [inline `@import`](/hugo-pipes/postcss/#options) support to `resources.PostCSS`, with imports relative to Hugo's virtual, composable file system. Another useful addition is the new `build` [configuration section](/getting-started/configuration/#configure-build). As an example in `config.toml`:
```toml
[build]
useResourceCacheWhen = "always"
```
-The above will tell Hugo to _always_ used the cached build resources inside `resources/_gen` for the build steps requiring a non-standard dependency (PostCSS and SCSS/SASS). Valid values are `never`, `always` and `fallback` (default).
+The above will tell Hugo to _always_ use the cached build resources inside `resources/_gen` for the build steps requiring a non-standard dependency (PostCSS and SCSS/SASS). Valid values are `never`, `always` and `fallback` (default).
This release represents **27 contributions by 8 contributors** to the main Hugo code base.[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@anthonyfok](https://github.com/anthonyfok), [@carlmjohnson](https://github.com/carlmjohnson), and [@sams96](https://github.com/sams96) for their ongoing contributions.