diff options
author | hugoreleaser <[email protected]> | 2019-08-15 19:00:12 +0000 |
---|---|---|
committer | hugoreleaser <[email protected]> | 2019-08-15 19:00:12 +0000 |
commit | 36d749f4ea2adb0fdcad2c411f3ca97c7a165e04 (patch) | |
tree | 4d30506c934190e08a4df01102bc7dffc8f2f02f | |
parent | 58c56e9ded2e4b7f0c9ae7e02f89f3a1dcb0d3a7 (diff) | |
download | hugo-36d749f4ea2adb0fdcad2c411f3ca97c7a165e04.tar.gz hugo-36d749f4ea2adb0fdcad2c411f3ca97c7a165e04.zip |
releaser: Prepare repository for 0.58.0-DEV
[ci skip]
-rw-r--r-- | common/hugo/version_current.go | 6 | ||||
-rw-r--r-- | snap/snapcraft.yaml | 4 | ||||
-rw-r--r-- | temp/0.57.1-relnotes-ready.md | 15 |
3 files changed, 5 insertions, 20 deletions
diff --git a/common/hugo/version_current.go b/common/hugo/version_current.go index 5b13be8b6..76df4b5f5 100644 --- a/common/hugo/version_current.go +++ b/common/hugo/version_current.go @@ -16,7 +16,7 @@ package hugo // CurrentVersion represents the current build version. // This should be the only one. var CurrentVersion = Version{ - Number: 0.57, - PatchLevel: 1, - Suffix: "", + Number: 0.58, + PatchLevel: 0, + Suffix: "-DEV", } diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index a6ca8fb80..8f9d29ada 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,12 +1,12 @@ name: hugo -version: "0.57.1" +version: "0.58.0-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.57.1-relnotes-ready.md b/temp/0.57.1-relnotes-ready.md deleted file mode 100644 index 89106b3ab..000000000 --- a/temp/0.57.1-relnotes-ready.md +++ /dev/null @@ -1,15 +0,0 @@ - - -This is a bug-fix release with a couple of important fixes. - -* hugolib: Fix draft etc. handling of _index.md pages [6ccf50ea](https://github.com/gohugoio/hugo/commit/6ccf50ea7bb291bcbe1d56a4d697a6fd57a9c629) [@bep](https://github.com/bep) [#6222](https://github.com/gohugoio/hugo/issues/6222)[#6210](https://github.com/gohugoio/hugo/issues/6210) -* Fix mainSections logic [67524c99](https://github.com/gohugoio/hugo/commit/67524c993623871626f0f22e6a2ac705a816a959) [@bep](https://github.com/bep) [#6217](https://github.com/gohugoio/hugo/issues/6217) -* Fix live reload mount logic with sub paths [952a3194](https://github.com/gohugoio/hugo/commit/952a3194962dd91f87e5bd227a1591b00c39ff05) [@bep](https://github.com/bep) [#6209](https://github.com/gohugoio/hugo/issues/6209) -* modules: Disable "auto tidy" for now [321418f2](https://github.com/gohugoio/hugo/commit/321418f22a4a94b87f01e1403a2f4a71106461fb) [@bep](https://github.com/bep) [#6115](https://github.com/gohugoio/hugo/issues/6115) -* hugolib: Recover and log panics in content init [7f3aab5a](https://github.com/gohugoio/hugo/commit/7f3aab5ac283ecfc7029b680d4c0a34920e728c8) [@bep](https://github.com/bep) [#6210](https://github.com/gohugoio/hugo/issues/6210) -* hugolib: Add some outputs tests [028b9926](https://github.com/gohugoio/hugo/commit/028b992611209b241b1f55def8d47f9188038dc3) [@bep](https://github.com/bep) [#6210](https://github.com/gohugoio/hugo/issues/6210) -* hugolib: Fix taxonomies vs expired [9475f61a](https://github.com/gohugoio/hugo/commit/9475f61a377fcf23f910cbfd4ddca59261326665) [@bep](https://github.com/bep) [#6213](https://github.com/gohugoio/hugo/issues/6213) -* commands: Make sure the hugo field is always initialized before it's used [ea9261e8](https://github.com/gohugoio/hugo/commit/ea9261e856c13c1d4ae05fcca08766d410b4b65c) [@vazrupe](https://github.com/vazrupe) [#6193](https://github.com/gohugoio/hugo/issues/6193) - - - |