summaryrefslogtreecommitdiff
path: root/lib/chef/deprecation/warnings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/deprecation/warnings.rb')
-rw-r--r--lib/chef/deprecation/warnings.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/deprecation/warnings.rb b/lib/chef/deprecation/warnings.rb
index 616f179d53..d6a9cbe374 100644
--- a/lib/chef/deprecation/warnings.rb
+++ b/lib/chef/deprecation/warnings.rb
@@ -25,7 +25,7 @@ class Chef
m = instance_method(name)
define_method(name) do |*args|
message = []
- message << "Method '#{name}' of '#{self.class}' is deprecated. It will be removed in Chef 12."
+ message << "Method '#{name}' of '#{self.class}' is deprecated. It will be removed in Chef 13."
message << "Please update your cookbooks accordingly."
Chef.log.deprecation(message, caller(0..3))
super(*args)