brevno-suite/hugo
7 years agohugolib: Improve shortcode error message
Bjørn Erik Pedersen [Tue, 9 May 2017 16:37:43 +0000 (18:37 +0200)]
hugolib: Improve shortcode error message

7 years agohelpers: Don't clean the path before Join
Albert Nigmatzianov [Mon, 8 May 2017 15:56:22 +0000 (17:56 +0200)]
helpers: Don't clean the path before Join

Join will call Clean anyway.

7 years agocommands: Use paths from PathSpec for walker
Albert Nigmatzianov [Mon, 8 May 2017 15:55:48 +0000 (17:55 +0200)]
commands: Use paths from PathSpec for walker

7 years agodocs: Fix bash command in tutorials/github-pages-blog
Hans Ott [Mon, 8 May 2017 20:14:14 +0000 (22:14 +0200)]
docs: Fix bash command in tutorials/github-pages-blog

7 years agohelpers: Don't clean path twice
Albert Nigmatzianov [Sun, 7 May 2017 15:16:36 +0000 (17:16 +0200)]
helpers: Don't clean path twice

Join calls Clean as it says in docs.

Minor performance improvement:
Before:
Average time per operation: 432ms
Average memory allocated per operation: 127322kB
Average allocations per operation: 2138137

After:
Average time per operation: 428ms
Average memory allocated per operation: 127350kB
Average allocations per operation: 2137892

7 years agodocs: Fix typo in templates/functions.md
Albert Nigmatzianov [Sat, 6 May 2017 19:32:51 +0000 (21:32 +0200)]
docs: Fix typo in templates/functions.md

Fix #3440

7 years agodocs: Update datafiles.md
Robert Starbuck [Sat, 6 May 2017 19:31:24 +0000 (20:31 +0100)]
docs: Update datafiles.md

7 years agohugolib: Add default config for ignoreFiles
Chase Adams [Sat, 6 May 2017 07:41:24 +0000 (00:41 -0700)]
hugolib: Add default config for ignoreFiles

7 years agotpl: Add some GoDoc info to template func docs
Bjørn Erik Pedersen [Tue, 2 May 2017 09:03:08 +0000 (11:03 +0200)]
tpl: Add some GoDoc info to template func docs

Closes #3418

7 years agoreleaser: Push the tag before goreleaser is run
Bjørn Erik Pedersen [Wed, 3 May 2017 07:29:59 +0000 (09:29 +0200)]
releaser: Push the tag before goreleaser is run

Fixes #3405

7 years agoi18n: Simplify code for detecting of untranslated id
Albert Nigmatzianov [Wed, 3 May 2017 07:11:14 +0000 (09:11 +0200)]
i18n: Simplify code for detecting of untranslated id

7 years agoi18n: Add tests
Albert Nigmatzianov [Wed, 3 May 2017 07:11:25 +0000 (09:11 +0200)]
i18n: Add tests

7 years agotpl/urls: Make urlize return a string
Bjørn Erik Pedersen [Tue, 2 May 2017 21:46:36 +0000 (23:46 +0200)]
tpl/urls: Make urlize return a string

Like it did in 0.20.

7 years agoi18n: Improve the detection of untranslated string
Albert Nigmatzianov [Tue, 2 May 2017 17:01:05 +0000 (19:01 +0200)]
i18n: Improve the detection of untranslated string

Fix #2607

7 years agodocs: Add documentation on slug translation
xavi blanch [Tue, 2 May 2017 16:31:06 +0000 (18:31 +0200)]
docs: Add documentation on slug translation

7 years agotpl/data: Clean up data namespace
Cameron Moore [Tue, 2 May 2017 03:41:08 +0000 (22:41 -0500)]
tpl/data: Clean up data namespace

- Move the main GetCSV and GetJSON into data.go.
- Add error returns to GetCSV and GetJSON.
- Add http client to Namespace for test mocking.
- Send accept headers on remote requests. Fixes #3395
- Return an error on non-2XX HTTP response codes and don't retry.
- Move cache tests to cache_test.go.

7 years agotpl/data: Move cache logic to separate file
Cameron Moore [Mon, 1 May 2017 19:08:46 +0000 (14:08 -0500)]
tpl/data: Move cache logic to separate file

7 years agotpl/data: Shorten some internal func names
Cameron Moore [Mon, 1 May 2017 19:04:21 +0000 (14:04 -0500)]
tpl/data: Shorten some internal func names

7 years agotpl/images: Fix embedded sync.Mutex
Cameron Moore [Tue, 2 May 2017 07:17:14 +0000 (02:17 -0500)]
tpl/images: Fix embedded sync.Mutex

7 years agotpl: Add basic tests for all namespace init funcs
Cameron Moore [Mon, 1 May 2017 14:13:21 +0000 (09:13 -0500)]
tpl: Add basic tests for all namespace init funcs

7 years agotpl: Add docshelper for template funcs
Bjørn Erik Pedersen [Mon, 1 May 2017 16:40:34 +0000 (18:40 +0200)]
tpl: Add docshelper for template funcs

And fix some other minor related issues.

Updates #3418

7 years agotpl/partials: Remouve unused method
Bjørn Erik Pedersen [Mon, 1 May 2017 13:57:52 +0000 (15:57 +0200)]
tpl/partials: Remouve unused method

7 years agotpl: Fix the remaining template funcs namespace issues
Bjørn Erik Pedersen [Mon, 1 May 2017 07:06:42 +0000 (09:06 +0200)]
tpl: Fix the remaining template funcs namespace issues

See #3042

7 years ago tpl/urls: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 21:33:14 +0000 (23:33 +0200)]
 tpl/urls: Make it a package that stands on its own

 See #3042

7 years agotpl/transform: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 21:16:54 +0000 (23:16 +0200)]
tpl/transform: Make it a package that stands on its own

See #3042

7 years agotpl/time: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 21:10:46 +0000 (23:10 +0200)]
tpl/time: Make it a package that stands on its own

See #3042

7 years agotpl/safe: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 21:06:28 +0000 (23:06 +0200)]
tpl/safe: Make it a package that stands on its own

See #3042

7 years agotpl/os: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 20:52:47 +0000 (22:52 +0200)]
tpl/os: Make it a package that stands on its own

See #3042

7 years agotpl/inflect: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 20:43:26 +0000 (22:43 +0200)]
tpl/inflect: Make it a package that stands on its own

See #3042

7 years agotpl/images: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 20:36:26 +0000 (22:36 +0200)]
tpl/images: Make it a package that stands on its own

See #3042

7 years agotpl/encoding: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 20:32:40 +0000 (22:32 +0200)]
tpl/encoding: Make it a package that stands on its own

See #3042

7 years agotpl/crypto: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 20:19:49 +0000 (22:19 +0200)]
tpl/crypto: Make it a package that stands on its own

See #3042

7 years agotpl/collections: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 19:52:56 +0000 (21:52 +0200)]
tpl/collections: Make it a package that stands on its own

See #3042

7 years agotpl/compare: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 17:33:19 +0000 (19:33 +0200)]
tpl/compare: Make it a package that stands on its own

See #3042

7 years agotpl/data: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 17:11:18 +0000 (19:11 +0200)]
tpl/data: Make it a package that stands on its own

See #3042

7 years agotpl/strings: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 16:41:13 +0000 (18:41 +0200)]
tpl/strings: Make it a package that stands on its own

See #3042

7 years agotpl/math: Make it a package that stands on its own
Bjørn Erik Pedersen [Sun, 30 Apr 2017 15:45:56 +0000 (17:45 +0200)]
tpl/math: Make it a package that stands on its own

See #3042

7 years agotpl: Add TemplateFuncsNamespaceRegistry
Bjørn Erik Pedersen [Sun, 30 Apr 2017 09:34:45 +0000 (11:34 +0200)]
tpl: Add TemplateFuncsNamespaceRegistry

As a first step to remove the hard ties between `tplimpl` and the different namespace packages.

The `lang` package is used as the first example use case.

See #3042

7 years agoreleaser: Disable shaky test
Bjørn Erik Pedersen [Mon, 1 May 2017 11:38:29 +0000 (13:38 +0200)]
releaser: Disable shaky test

7 years agodocs: Replace cdn.mathjax.org with cdnjs.cloudflare.com
Takuya Kitazawa [Sun, 30 Apr 2017 19:43:38 +0000 (04:43 +0900)]
docs: Replace cdn.mathjax.org with cdnjs.cloudflare.com

7 years agotpl: Add template function namespaces
Cameron Moore [Mon, 13 Mar 2017 22:55:02 +0000 (17:55 -0500)]
tpl: Add template function namespaces

This commit moves almost all of the template functions into separate
packages under tpl/ and adds a namespace framework.  All changes should
be backward compatible for end users, as all existing function names in
the template funcMap are left intact.

Seq and DoArithmatic have been moved out of the helpers package and into
template namespaces.

Most of the tests involved have been refactored, and many new tests have
been written.  There's still work to do, but this is a big improvement.

I got a little overzealous and added some new functions along the way:

- strings.Contains
- strings.ContainsAny
- strings.HasSuffix
- strings.TrimPrefix
- strings.TrimSuffix

Documentation is forthcoming.

Fixes #3042

7 years agoRender 404 in default language only
Mitchell Cohen [Sun, 30 Apr 2017 08:40:37 +0000 (04:40 -0400)]
Render 404 in default language only

This prevents 404.html from being re-rendered for each site.

Fixes #3075

7 years agonetlify: Add some security headers
Bjørn Erik Pedersen [Sat, 29 Apr 2017 20:20:36 +0000 (22:20 +0200)]
netlify: Add some security headers

7 years agolivereload: Fix data race in close
Bjørn Erik Pedersen [Sat, 29 Apr 2017 23:10:03 +0000 (01:10 +0200)]
livereload: Fix data race in close

Fixes #2625

7 years agodocs: Fix typos
Tom Harvey [Fri, 28 Apr 2017 05:36:38 +0000 (22:36 -0700)]
docs: Fix typos

7 years agovendor: Update cobra and pflag
Albert Nigmatzianov [Thu, 27 Apr 2017 13:36:57 +0000 (15:36 +0200)]
vendor: Update cobra and pflag

See https://github.com/spf13/cobra/issues/426

7 years agohubolib: Narrow a test assertion
Bjørn Erik Pedersen [Thu, 27 Apr 2017 11:00:24 +0000 (13:00 +0200)]
hubolib: Narrow a test assertion

7 years agoreleaser: Fix broken test build
Bjørn Erik Pedersen [Thu, 27 Apr 2017 09:15:24 +0000 (11:15 +0200)]
releaser: Fix broken test build

7 years agoreleaser: Skip Git test on Travis
Bjørn Erik Pedersen [Thu, 27 Apr 2017 08:59:00 +0000 (10:59 +0200)]
releaser: Skip Git test on Travis

7 years agorelease: Add relase notes for 0.20.6
Bjørn Erik Pedersen [Thu, 27 Apr 2017 08:13:31 +0000 (10:13 +0200)]
release: Add relase notes for 0.20.6

[ci skip]

7 years agohugolib: Avoid index.md in /index/index.html
Bjørn Erik Pedersen [Thu, 27 Apr 2017 07:33:40 +0000 (09:33 +0200)]
hugolib: Avoid index.md in /index/index.html

Hugo 0.20 broke some sites that grouped their blog post and images together in subfolders.

This commit re-introduces that behaviour:

* If the file base name resolves to the same as the base name for the output type (i.e. "index" for HTML), the user probably meant it, so we treat that as an `uglyURL`, i.e. `my-blog-post-1.md`=> `/my-blog-post-1/index.html`
* The main use case for this is to group blog post and images together.
* Note that for the top level folder there will be a potential name conflict with a `section` `index.html` (if enabled)
* This issue will not be relevant for subfolders in sections
* Hugo will soon add support for nested sections, but we will have to find a way to separate them from the rest (`/content/_mysubsection` maybe).

Fixes #3396

7 years agodocs: Regenerate commands docs
Bjørn Erik Pedersen [Wed, 26 Apr 2017 20:40:21 +0000 (22:40 +0200)]
docs: Regenerate commands docs

7 years agocommands: Make first letter of flags' usage lowercase
Albert Nigmatzianov [Wed, 26 Apr 2017 19:58:10 +0000 (21:58 +0200)]
commands: Make first letter of flags' usage lowercase

7 years agovendor: Update cobra and pflag
Albert Nigmatzianov [Wed, 26 Apr 2017 19:26:20 +0000 (21:26 +0200)]
vendor: Update cobra and pflag

* Faster help message
* Faster docs
* Adds help flag in usage

7 years agoreleaser: Fix some of the fpm fields for deb
Anthony Fok [Wed, 26 Apr 2017 16:51:05 +0000 (10:51 -0600)]
releaser: Fix some of the fpm fields for deb

7 years agohugolib: Make missing GitInfo a WARNING
Bjørn Erik Pedersen [Wed, 26 Apr 2017 09:03:12 +0000 (11:03 +0200)]
hugolib: Make missing GitInfo a WARNING

And not an ERROR.

Fixes #3376

7 years agodocs: Add notes about some output format behaviour
Jordan [Tue, 25 Apr 2017 17:37:35 +0000 (14:37 -0300)]
docs: Add notes about some output format behaviour

7 years agoreleaser: Fix ldflags setting
Bjørn Erik Pedersen [Tue, 25 Apr 2017 12:30:48 +0000 (14:30 +0200)]
releaser: Fix ldflags setting

Closes #3382

7 years agodocs: Remove temp release notes
Bjørn Erik Pedersen [Tue, 25 Apr 2017 07:48:23 +0000 (09:48 +0200)]
docs: Remove temp release notes

7 years agodocs: Add relase notes for 0.20.5
Bjørn Erik Pedersen [Tue, 25 Apr 2017 07:17:06 +0000 (09:17 +0200)]
docs: Add relase notes for 0.20.5

[ci skip]

7 years agodocs: Add a time to 0.20.4 release docs
Bjørn Erik Pedersen [Mon, 24 Apr 2017 19:46:00 +0000 (21:46 +0200)]
docs: Add a time to 0.20.4 release docs

To make it newer than the one earlier today :-)

7 years agoreleaser: Add relase notes for release of 0.20.4 v0.20.4
Bjørn Erik Pedersen [Mon, 24 Apr 2017 18:30:20 +0000 (20:30 +0200)]
releaser: Add relase notes for release of 0.20.4

[ci skip]

7 years agoAdd -linkmode external
James Munnelly [Mon, 24 Apr 2017 14:36:18 +0000 (15:36 +0100)]
Add -linkmode external

7 years agoSet extldflags to static when building
James Munnelly [Mon, 24 Apr 2017 14:22:23 +0000 (15:22 +0100)]
Set extldflags to static when building

7 years agoreleaser: Add relase notes to /docs for release of 0.20.3
Ubuntu [Mon, 24 Apr 2017 11:07:47 +0000 (11:07 +0000)]
releaser: Add relase notes to /docs for release of 0.20.3

[ci skip]

7 years agorelease: Adjust release notes for 0.20.3
Bjørn Erik Pedersen [Mon, 24 Apr 2017 10:55:18 +0000 (12:55 +0200)]
release: Adjust release notes for 0.20.3

7 years agoreleaser: Add relase notes draft for release of 0.20.3
Bjørn Erik Pedersen [Mon, 24 Apr 2017 10:47:32 +0000 (12:47 +0200)]
releaser: Add relase notes draft for release of 0.20.3

[ci skip]

7 years agoreleaser: Fix a Go vet complaint
Bjørn Erik Pedersen [Mon, 24 Apr 2017 10:41:47 +0000 (12:41 +0200)]
releaser: Fix a Go vet complaint

See #3358

7 years agoAutomate the Hugo release process
Bjørn Erik Pedersen [Thu, 13 Apr 2017 14:59:05 +0000 (16:59 +0200)]
Automate the Hugo release process

This commit adds a work flow aroung GoReleaser to get the Hugo release process automated and more uniform:

* It can be run fully automated or in two steps to allow for manual edits of the relase notes.
* It supports both patch and full releases.
* It fetches author, issue, repo info. etc. for the release notes from GitHub.
* The file names produced are mainly the same as before, but we no use tar.gz as archive for all Unix versions.
* There isn't a fully automated CI setup in place yet, but the release tag is marked in the commit message with "[ci deploy]"

Fixes #3358

7 years agohugolib: Fix handling of zero-length files
Bjørn Erik Pedersen [Sun, 23 Apr 2017 20:03:25 +0000 (22:03 +0200)]
hugolib: Fix handling of zero-length files

This was a regression in Hugo 0.20. This commit makes sure that zeron-length files are not rendered to file.

Fixes #3355

7 years agohugolib: Prevent decoding pageParam in common cases
Albert Nigmatzianov [Thu, 6 Apr 2017 20:29:37 +0000 (22:29 +0200)]
hugolib: Prevent decoding pageParam in common cases

7 years agohelpers: Delete RenderingContext.getConfig
Albert Nigmatzianov [Thu, 6 Apr 2017 20:24:27 +0000 (22:24 +0200)]
helpers: Delete RenderingContext.getConfig

7 years agohugolib: Ignore non-source files on partial rebuild
xofyarg [Sat, 22 Apr 2017 20:38:54 +0000 (21:38 +0100)]
hugolib: Ignore non-source files on partial rebuild

Partial rebuild does not have the same logic as normal rebuild on
selecting which file to build. This change makes it possible to
share the file select logic between two kinds of build.

Fix #3325.

7 years agotplimpl: Add translation links to the default sitemap template
Jack Taylor [Sat, 22 Apr 2017 20:37:14 +0000 (05:37 +0900)]
tplimpl: Add translation links to the default sitemap template

For pages with translations, add links with hreflang attributes to the
default sitemap template. This helps Google to show the correct
language page in its search results. The syntax used is based on
Google's example at [1].

Also update the sitemap template docs to reflect the changes in the
default template.

[1]
https://support.google.com/webmasters/answer/2620865?hl=en&topic=2370587&ctx=topic

Fixes #2569

7 years agocommands: Import Octopress image tag in Jekyll importer
Stefan Buynov [Sat, 22 Apr 2017 20:35:52 +0000 (23:35 +0300)]
commands: Import Octopress image tag in Jekyll importer

7 years agoFix check-vendor logic in Makefile
Cameron Moore [Wed, 19 Apr 2017 18:41:52 +0000 (13:41 -0500)]
Fix check-vendor logic in Makefile

7 years agoRemove check-vendor from make check
Bjørn Erik Pedersen [Wed, 19 Apr 2017 16:12:01 +0000 (18:12 +0200)]
Remove check-vendor from make check

I suspect there are some false negatives in this one.

7 years agovendor: Fix go-toml
Bjørn Erik Pedersen [Wed, 19 Apr 2017 16:09:51 +0000 (18:09 +0200)]
vendor: Fix go-toml

7 years agoAdd check-vendor target to Makefile
Cameron Moore [Wed, 19 Apr 2017 13:05:20 +0000 (08:05 -0500)]
Add check-vendor target to Makefile

The check-vendor target will exit with an error if any files in vendor/
differ from what's checked into git.

govendor checksums can get out of sync if extraneous files are in the
local, third-party repo (see kardianos/govendor#129).  govendor also
updates the vendor.json upon "sync."  We can use that quirk to detect
out of sync checksums in CI, so I've added check-vendor to the check
target dependencies.

7 years agohugolib: Log WARNING only on unknown /data files
Bjørn Erik Pedersen [Tue, 18 Apr 2017 16:47:37 +0000 (18:47 +0200)]
hugolib: Log WARNING only on unknown /data files

Fixes #3361

7 years agodocs: Add txtpen as alternative commenting service
Ricky Han [Mon, 10 Apr 2017 18:28:12 +0000 (14:28 -0400)]
docs: Add txtpen as alternative commenting service

7 years agodocs: Fix .Data.Pages range in sample
Rachel Simone Weil [Sun, 16 Apr 2017 05:51:57 +0000 (00:51 -0500)]
docs: Fix .Data.Pages range in sample

7 years agodocs: Add 0.20.2 release notes
Bjørn Erik Pedersen [Sun, 16 Apr 2017 08:56:50 +0000 (10:56 +0200)]
docs: Add 0.20.2 release notes

7 years agotplimpl: Allow text partials in HTML templates
Bjørn Erik Pedersen [Sat, 15 Apr 2017 09:33:53 +0000 (11:33 +0200)]
tplimpl: Allow text partials in HTML templates

Most obvius benefit of this is to include CSS partials with css file suffix into HTML templates.

A valid workaround would be to rename the file `mystyles.html`, but that doesn't work too good for external editors etc.

The css partial is  a method used in some themes before Hugo 0.20, but then it stopped working.

This commit reintroduces that behaviour.

Note that the regular layout lookups for text templates, i.e. "single.json" will be
prefixed with "_text/" on lookup and will only match in the text collection.

Fixes #3273

7 years agovendor: Update dependencies
Bjørn Erik Pedersen [Thu, 13 Apr 2017 22:35:14 +0000 (00:35 +0200)]
vendor: Update dependencies

7 years agodocs: Add Netlify badge if on Netlify
Bjørn Erik Pedersen [Fri, 14 Apr 2017 07:35:51 +0000 (09:35 +0200)]
docs: Add Netlify badge if on Netlify

7 years agoGet versions back to 0.20-DEV
Bjørn Erik Pedersen [Thu, 13 Apr 2017 14:19:50 +0000 (16:19 +0200)]
Get versions back to 0.20-DEV

This reverts commit 8ac1fcd0ceb5d2e55e16a9caa7f6f0d646a07668.

7 years agoPrepare release 0.20.1 v0.20.1
Bjørn Erik Pedersen [Thu, 13 Apr 2017 14:00:30 +0000 (16:00 +0200)]
Prepare release 0.20.1

7 years agodocs: Add 0.20.1 release notes
Bjørn Erik Pedersen [Thu, 13 Apr 2017 09:38:55 +0000 (11:38 +0200)]
docs: Add 0.20.1 release notes

7 years agooutput: Fix base theme vs project base template logic
Bjørn Erik Pedersen [Wed, 12 Apr 2017 18:40:36 +0000 (20:40 +0200)]
output: Fix base theme vs project base template logic

Fixes #3323

7 years agodocs: Add sanjay-saxena.github.io to the showcase
Sanjay Saxena [Tue, 11 Apr 2017 22:03:28 +0000 (15:03 -0700)]
docs: Add sanjay-saxena.github.io to the showcase

7 years agohugolib, output: Do not lower case template names
Bjørn Erik Pedersen [Wed, 12 Apr 2017 19:01:22 +0000 (21:01 +0200)]
hugolib, output: Do not lower case template names

This regression was introduced in Hugo 0.20.

Fixes #3333

7 years agohugolib: Must recreate Paginator on live-reload
Bjørn Erik Pedersen [Wed, 12 Apr 2017 16:11:37 +0000 (18:11 +0200)]
hugolib: Must recreate Paginator on live-reload

The structure may potentially have changed, and then it fails.

Fixes #3315

7 years agohugolib: Avoid recreating the Paginator on copy
Bjørn Erik Pedersen [Wed, 12 Apr 2017 11:00:44 +0000 (13:00 +0200)]
hugolib: Avoid recreating the Paginator on copy

See #3315

7 years agohugolib: Avoid processing the same notify event twice
Bjørn Erik Pedersen [Wed, 12 Apr 2017 08:07:08 +0000 (10:07 +0200)]
hugolib: Avoid processing the same notify event twice

On `macOS`, at least, we've seen multiple WRITE events for same file, and no need to do the same job twice.

7 years agosnapcraft: Go 1.8.1
Anthony Fok [Wed, 12 Apr 2017 09:05:01 +0000 (03:05 -0600)]
snapcraft: Go 1.8.1

7 years agohugolib: Final fix of rssURI deprecation
Bjørn Erik Pedersen [Mon, 10 Apr 2017 19:26:55 +0000 (21:26 +0200)]
hugolib: Final fix of rssURI deprecation

Fixes #3319

7 years agohugolib: Only show rssUri deprecation WARNING if it is actually set
Bjørn Erik Pedersen [Mon, 10 Apr 2017 15:54:55 +0000 (17:54 +0200)]
hugolib: Only show rssUri deprecation WARNING if it is actually set

Fixes #3319

7 years agoall Bump to 0.21-DEV
Bjørn Erik Pedersen [Mon, 10 Apr 2017 07:33:21 +0000 (09:33 +0200)]
all Bump to 0.21-DEV

7 years agoall: Prepare Hugo 0.20 release version v0.20
Bjørn Erik Pedersen [Mon, 10 Apr 2017 07:10:53 +0000 (09:10 +0200)]
all: Prepare Hugo 0.20 release version