releaser: Prepare repository for 0.35-DEV
authorhugoreleaser <bjorn.erik.pedersen+hugoreleaser@gmail.com>
Mon, 22 Jan 2018 12:08:54 +0000 (12:08 +0000)
committerhugoreleaser <bjorn.erik.pedersen+hugoreleaser@gmail.com>
Mon, 22 Jan 2018 12:08:54 +0000 (12:08 +0000)
[ci skip]

docs/config.toml
helpers/hugo.go
snapcraft.yaml
temp/0.34-relnotes-ready.md [deleted file]

index a983dd46d376d9d2aee3f4e1667eba4d8926f16b..346b66d03742e8b7e9e4e20b9536ca1534f4655a 100644 (file)
@@ -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.34"
+  release = "0.35-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)
index 9736325cee614e9b825532d17fcadb4a46713fa2..4de61bcd96f4fe794b4976b6547a071441f23629 100644 (file)
@@ -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.34,
+       Number:     0.35,
        PatchLevel: 0,
-       Suffix:     "",
+       Suffix:     "-DEV",
 }
 
 func hugoVersion(version float32, patchVersion int, suffix string) string {
index 817ac448b2f859d4ad1eb5f665802b6d54b3b1bf..ce7f57d34a459d358180363be0f62eddaf6bca29 100644 (file)
@@ -1,12 +1,12 @@
 name: hugo
-version: "0.34"
+version: "0.35-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.34-relnotes-ready.md b/temp/0.34-relnotes-ready.md
deleted file mode 100644 (file)
index 712f3f3..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-
-Hugo `0.33` is a small release. It contains a few smaller bug-fixes, but more important is an overhaul of the API used to find your images and other resources in your page bundles.
-
-We have added two simple methods on the `Resources` object:
-
-* `.Match` finds every resource matching a pattern. Examples: `.Match "images/*.jpg"` finds every JPEG image in `images` and `.Match "**.jpg"` finds every JPEG image in the bundle.
-* `.GetMatch` finds the first resource matching the pattern given.
-
-**Note: The path separators used are Unix-style forward slashes, even on Windows.**
-
-It uses [standard wildcard syntax](http://tldp.org/LDP/GNU-Linux-Tools-Summary/html/x11655.htm) with the addition of the `**`, aka super-asterisk, which matches across path boundaries.
-
-Thanks to [@gobwas](https://github.com/gobwas/glob) for a fast and easy-to-use Glob library.
-
-This release represents **5 contributions by 1 contributors** to the main Hugo code base.
-
-Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), 
-which has received **25 contributions by 16 contributors**. A special thanks to [@bep](https://github.com/bep), [@rmetzler](https://github.com/rmetzler), [@chris-rudmin](https://github.com/chris-rudmin), and [@stkevintan](https://github.com/stkevintan) for their work on the documentation site.
-
-
-Hugo now has:
-
-* 22689+ [stars](https://github.com/gohugoio/hugo/stargazers)
-* 448+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
-* 197+ [themes](http://themes.gohugo.io/)
-
-## Notes
-* `Resources.GetByPrefix` and  `Resources.ByPrefix` are depracated. They still work, but will eventually be removed.  Use `Resources.Match` (many) and `Resources.GetMatch`  (one).
-* When filtering bundles pages in sub-folders, you need to include the sub-folder when matching. This was a bug introduced in `0.32` and gets it in line with images and other resources.
-
-## Enhancements
-
-* Add `Resources.Match` and `Resources.GetMatch` [94213801](https://github.com/gohugoio/hugo/commit/9421380168f66620cb73203e1267814b3086d805) [@bep](https://github.com/bep) [#4301](https://github.com/gohugoio/hugo/issues/4301)
-
-## Fixes
-* Add validation for `defaultContentLanguage` [4d5e4f37](https://github.com/gohugoio/hugo/commit/4d5e4f379a890a3c6cbc11ddb40d77a90f14c015) [@bep](https://github.com/bep) [#4298](https://github.com/gohugoio/hugo/issues/4298)
-* Fix lookup of pages bundled in sub-folders in `ByPrefix` etc. [5d030869](https://github.com/gohugoio/hugo/commit/5d03086981b4a7d4bc450269a6a2e0fd22dbeed7) [@bep](https://github.com/bep) [#4295](https://github.com/gohugoio/hugo/issues/4295)
-
-
-
-
-