diff options
author | hugoreleaser <[email protected]> | 2020-01-05 18:58:55 +0000 |
---|---|---|
committer | hugoreleaser <[email protected]> | 2020-01-05 18:58:55 +0000 |
commit | 273047b5ba19c0a9cdf22ea549b4bb52f19abdf2 (patch) | |
tree | 0fed177a01095825dc745dd1df29c0ef767cd1a5 | |
parent | 83e501849e788e52882896561e3afdbd7387bb25 (diff) | |
download | hugo-273047b5ba19c0a9cdf22ea549b4bb52f19abdf2.tar.gz hugo-273047b5ba19c0a9cdf22ea549b4bb52f19abdf2.zip |
releaser: Prepare repository for 0.63.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.62.2-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 ac8a02b30..a21efecc1 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.62, - PatchLevel: 2, - Suffix: "", + Number: 0.63, + PatchLevel: 0, + Suffix: "-DEV", } diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index e280a5b8f..2707b29f1 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,12 +1,12 @@ name: hugo -version: "0.62.2" +version: "0.63.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.62.2-relnotes-ready.md b/temp/0.62.2-relnotes-ready.md deleted file mode 100644 index 145a3250f..000000000 --- a/temp/0.62.2-relnotes-ready.md +++ /dev/null @@ -1,15 +0,0 @@ - - -This is a bug-fix release with a couple of important fixes. - -* hugolib: Fix relative .Page.GetPage from bundle [196a9df5](https://github.com/gohugoio/hugo/commit/196a9df585c4744e3280f37c1c24e469fce14b8c) [@bep](https://github.com/bep) [#6705](https://github.com/gohugoio/hugo/issues/6705) -* markup/goldmark: Adjust auto ID space handling [9b6e6146](https://github.com/gohugoio/hugo/commit/9b6e61464b09ffe3423fb8d7c72bddb7a9ed5b98) [@bep](https://github.com/bep) [#6710](https://github.com/gohugoio/hugo/issues/6710) -* docs: Document the new autoHeadingIDType setting [d62ede8e](https://github.com/gohugoio/hugo/commit/d62ede8e9e5883e7ebb023e49b82f07b45edc1c7) [@bep](https://github.com/bep) [#6707](https://github.com/gohugoio/hugo/issues/6707)[#6616](https://github.com/gohugoio/hugo/issues/6616) -* docs: Regenerate docshelper [81b7e48a](https://github.com/gohugoio/hugo/commit/81b7e48a55092203aeee8785799e6fed3928760e) [@bep](https://github.com/bep) [#6707](https://github.com/gohugoio/hugo/issues/6707)[#6616](https://github.com/gohugoio/hugo/issues/6616) -* markup/goldmark: Add an optional Blackfriday auto ID strategy [16e7c112](https://github.com/gohugoio/hugo/commit/16e7c1120346bd853cf6510ffac8e94824bf2c7f) [@bep](https://github.com/bep) [#6707](https://github.com/gohugoio/hugo/issues/6707) -* markup/goldmark: Make the autoID type config a string [8f071fc1](https://github.com/gohugoio/hugo/commit/8f071fc159ce9a0fc0ea14a73bde8f299bedd109) [@bep](https://github.com/bep) [#6707](https://github.com/gohugoio/hugo/issues/6707) -* markup/goldmark: Simplify code [5ee1f087](https://github.com/gohugoio/hugo/commit/5ee1f0876f3ec8b79d6305298185dc821ead2d28) [@bep](https://github.com/bep) -* markup/goldmark: Make auto IDs GitHub compatible [a82d2700](https://github.com/gohugoio/hugo/commit/a82d2700fcc772aada15d65b8f76913ca23f7404) [@bep](https://github.com/bep) [#6616](https://github.com/gohugoio/hugo/issues/6616) - - - |