shithub: hugo

Download patch

ref: 695be00c0715fdfeda7ed256196f77cf72240b38
parent: cabc6b31866e3bb86759f6615a83cec4c3610e82
author: Bjørn Erik Pedersen <[email protected]>
date: Sun Jan 1 07:33:30 EST 2017

hugolib: Bump the current warning deprecations

Fixes #2836

--- a/hugolib/page.go
+++ b/hugolib/page.go
@@ -244,11 +244,13 @@
 }
 
 func (*PageMeta) WordCount() int {
+	// Remove in Hugo 0.19
 	helpers.Deprecated("PageMeta", "WordCount", ".WordCount (on Page)", true)
 	return 0
 }
 
 func (*PageMeta) FuzzyWordCount() int {
+	// Remove in Hugo 0.19
 	helpers.Deprecated("PageMeta", "FuzzyWordCount", ".FuzzyWordCount (on Page)", true)
 	return 0
 
@@ -255,6 +257,7 @@
 }
 
 func (*PageMeta) ReadingTime() int {
+	// Remove in Hugo 0.19
 	helpers.Deprecated("PageMeta", "ReadingTime", ".ReadingTime (on Page)", true)
 	return 0
 }
@@ -1585,7 +1588,8 @@
 
 func (p *Page) RSSlink() template.HTML {
 	// TODO(bep) we cannot have two of these
-	helpers.Deprecated(".Page", "RSSlink", "RSSLink", false)
+	// Remove in Hugo 0.20
+	helpers.Deprecated(".Page", "RSSlink", "RSSLink", true)
 	return p.RSSLink
 }
 
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -251,7 +251,7 @@
 
 // GetParam gets a site parameter value if found, nil if not.
 func (s *SiteInfo) GetParam(key string) interface{} {
-	helpers.Deprecated("SiteInfo", ".GetParam", ".Param", false)
+	helpers.Deprecated("SiteInfo", ".GetParam", ".Param", true)
 	v := s.Params[strings.ToLower(key)]
 
 	if v == nil {