summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--docs/config.toml2
-rw-r--r--helpers/hugo.go4
-rw-r--r--snapcraft.yaml4
-rw-r--r--temp/0.29-relnotes-ready.md37
4 files changed, 5 insertions, 42 deletions
diff --git a/docs/config.toml b/docs/config.toml
index 55a921d03..4993cb6cd 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -71,7 +71,7 @@ twitter = "GoHugoIO"
[params]
description = "The world’s fastest framework for building websites"
## Used for views in rendered HTML (i.e., rather than using the .Hugo variable)
- release = "0.29"
+ release = "0.30-DEV"
## Setting this to true will add a "noindex" to *EVERY* page on the site
removefromexternalsearch = false
## Gh repo for site footer (include trailing slash)
diff --git a/helpers/hugo.go b/helpers/hugo.go
index c454b815b..30d986521 100644
--- a/helpers/hugo.go
+++ b/helpers/hugo.go
@@ -93,9 +93,9 @@ func (v HugoVersion) NextPatchLevel(level int) HugoVersion {
// CurrentHugoVersion represents the current build version.
// This should be the only one.
var CurrentHugoVersion = HugoVersion{
- Number: 0.29,
+ Number: 0.30,
PatchLevel: 0,
- Suffix: "",
+ Suffix: "-DEV",
}
func hugoVersion(version float32, patchVersion int, suffix string) string {
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 5520f0340..aeecc31b6 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,12 +1,12 @@
name: hugo
-version: "0.29"
+version: "0.30-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.29-relnotes-ready.md b/temp/0.29-relnotes-ready.md
deleted file mode 100644
index 53cd3f9f4..000000000
--- a/temp/0.29-relnotes-ready.md
+++ /dev/null
@@ -1,37 +0,0 @@
-
-Hugo `0.29` brings Template Metrics by [@moorereason](https://github.com/moorereason). Hugo is very fast, but it is still possible to write ineffective templates. Now these should be easy to identify. Just run:
-
-```bash
-hugo --templateMetrics
-```
-Now, that was the tasty carrot. The real reason this release comes so fast after the last one is to change the default value for the new `noHTTPCache` flag, which gives away too much performance to make sense as a default value.
-
-Hugo now has:
-
-* 19817+ [stars](https://github.com/gohugoio/hugo/stargazers)
-* 454+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
-* 180+ [themes](http://themes.gohugo.io/)
-
-## Notes
-* Make `noHTTPCache` default false [e94d4f01](https://github.com/gohugoio/hugo/commit/e94d4f0177852b357f40fb9686a0ff3667d86351) [@bep](https://github.com/bep)
-
-## Enhancements
-
-### Templates
-* Add simple template metrics feature [b4a14c25](https://github.com/gohugoio/hugo/commit/b4a14c25fe85c41b79497be27ead128502a4dd7b) [@moorereason](https://github.com/moorereason)
-* Set Metrics at creation time [b5e1dc58](https://github.com/gohugoio/hugo/commit/b5e1dc5892f81da798d0d4e964a1f3328532f45e) [@bep](https://github.com/bep)
-* Fix sort order [d3681f51](https://github.com/gohugoio/hugo/commit/d3681f51c08fb11e8addcf9f0b484848d20d46cc) [@bep](https://github.com/bep)
-* Add math.Ceil, Floor, and Round to method mappings [8a69d235](https://github.com/gohugoio/hugo/commit/8a69d2356703d9f2fcb75bce0ae514e70ebd8e01) [@moorereason](https://github.com/moorereason)
-
-### Other
-* Split go build in Dockerfile [d9697e27](https://github.com/gohugoio/hugo/commit/d9697e275ecb038958b3dcea2b43e11dcba28fc9) [@tjamet](https://github.com/tjamet)
-* Update Dockerfile to benefit build cache [09d960f1](https://github.com/gohugoio/hugo/commit/09d960f17396eb7fd2c8fe6527db9503d59f0b4f) [@tjamet](https://github.com/tjamet)
-* Add git to snap package for GitInfo [a3a3f5b8](https://github.com/gohugoio/hugo/commit/a3a3f5b86114213a23337499551f000662b26022) [@ghalse](https://github.com/ghalse)
-
-
-
-
-
-
-
-