From 544f0a6394b0e085d355e8217fc5bb3d96c12a98 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 10 May 2017 20:05:52 +0200 Subject: [PATCH] hugolib: The deprecated Extension, Now and TargetPath will now ERROR --- hugolib/page.go | 4 ++-- hugolib/page_paths.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hugolib/page.go b/hugolib/page.go index bed2e254..8479288d 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -749,7 +749,7 @@ func (p *Page) analyzePage() { func (p *Page) Extension() string { // Remove in Hugo 0.22. - helpers.Deprecated("Page", "Extension", "See OutputFormats with its MediaType", false) + helpers.Deprecated("Page", "Extension", "See OutputFormats with its MediaType", true) return p.extension } @@ -1510,7 +1510,7 @@ func (p *Page) copy() *Page { func (p *Page) Now() time.Time { // Delete in Hugo 0.22 - helpers.Deprecated("Page", "Now", "Use now (the template func)", false) + helpers.Deprecated("Page", "Now", "Use now (the template func)", true) return time.Now() } diff --git a/hugolib/page_paths.go b/hugolib/page_paths.go index f842abdd..1fe8ea59 100644 --- a/hugolib/page_paths.go +++ b/hugolib/page_paths.go @@ -251,6 +251,6 @@ func (p *Page) createRelativePermalinkForOutputFormat(f output.Format) string { func (p *Page) TargetPath() (outfile string) { // Delete in Hugo 0.22 - helpers.Deprecated("Page", "TargetPath", "This method does not make sanse any more.", false) + helpers.Deprecated("Page", "TargetPath", "This method does not make sanse any more.", true) return "" } -- 2.30.2