hugolib: Bump the current warning deprecations

Fixes #2836
This commit is contained in:
Bjørn Erik Pedersen
2017-01-01 12:33:30 +01:00
parent cabc6b3186
commit 695be00c07
2 changed files with 6 additions and 2 deletions

View File

@@ -244,17 +244,20 @@ type PageMeta struct {
}
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
}
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) Hugo() *HugoInfo {
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
}