summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-03-20 21:13:44 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-03-20 21:13:44 +0100
commitb6798ee8676c48f86b0bd8581ea244f4be4ef3fa (patch)
tree249921c3d7c79a1692e0c36c924c771561e8999a
parent84f4b731d23bbcb1821eed46958bf73476f00543 (diff)
Bump some deprecations
-rw-r--r--commands/hugo.go4
-rw-r--r--resource/resource.go4
-rw-r--r--source/fileInfo.go4
3 files changed, 6 insertions, 6 deletions
diff --git a/commands/hugo.go b/commands/hugo.go
index 769fb37ee..60244b099 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -516,8 +516,8 @@ func (c *commandeer) setValueFromFlag(flags *flag.FlagSet, key string) {
if _, deprecated := deprecatedFlags[strings.ToLower(key)]; deprecated {
msg := fmt.Sprintf(`Set "%s = true" in your config.toml.
If you need to set this configuration value from the command line, set it via an OS environment variable: "HUGO_%s=true hugo"`, key, strings.ToUpper(key))
- // Remove in Hugo 0.37
- helpers.Deprecated("hugo", "--"+key+" flag", msg, false)
+ // Remove in Hugo 0.38
+ helpers.Deprecated("hugo", "--"+key+" flag", msg, true)
}
f := flags.Lookup(key)
c.Set(key, f.Value.String())
diff --git a/resource/resource.go b/resource/resource.go
index 8627d93c4..2732f8b37 100644
--- a/resource/resource.go
+++ b/resource/resource.go
@@ -116,7 +116,7 @@ Some examples:
// "logo" will match logo.png. It returns nil of none found.
// In potential ambiguous situations, combine it with ByType.
func (r Resources) GetByPrefix(prefix string) Resource {
- helpers.Deprecated("Resources", "GetByPrefix", prefixDeprecatedMsg, false)
+ helpers.Deprecated("Resources", "GetByPrefix", prefixDeprecatedMsg, true)
prefix = strings.ToLower(prefix)
for _, resource := range r {
if matchesPrefix(resource, prefix) {
@@ -129,7 +129,7 @@ func (r Resources) GetByPrefix(prefix string) Resource {
// ByPrefix gets all resources matching the given base filename prefix, e.g
// "logo" will match logo.png.
func (r Resources) ByPrefix(prefix string) Resources {
- helpers.Deprecated("Resources", "ByPrefix", prefixDeprecatedMsg, false)
+ helpers.Deprecated("Resources", "ByPrefix", prefixDeprecatedMsg, true)
var matches Resources
prefix = strings.ToLower(prefix)
for _, resource := range r {
diff --git a/source/fileInfo.go b/source/fileInfo.go
index eb7015aa1..1cad1c4ee 100644
--- a/source/fileInfo.go
+++ b/source/fileInfo.go
@@ -133,8 +133,8 @@ func (fi *FileInfo) FileInfo() os.FileInfo {
}
func (fi *FileInfo) Bytes() []byte {
- // Remove in Hugo 0.34
- helpers.Deprecated("File", "Bytes", "", false)
+ // Remove in Hugo 0.38
+ helpers.Deprecated("File", "Bytes", "", true)
return []byte("")
}