aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorYuji Yaginuma <yuuji.yaginuma@gmail.com>2018-01-31 14:27:45 +0900
committerYuji Yaginuma <yuuji.yaginuma@gmail.com>2018-01-31 14:27:45 +0900
commit3ba52d6a2b6708c408f9e8a4eee1d73709b067d1 (patch)
treebcc88b88652b9a0c0bebe5ce19946ff99149955b /activesupport
parent9709b004b4127dfe33492df0a807ae501b78bfd6 (diff)
downloadrails-3ba52d6a2b6708c408f9e8a4eee1d73709b067d1.tar.gz
rails-3ba52d6a2b6708c408f9e8a4eee1d73709b067d1.tar.bz2
rails-3ba52d6a2b6708c408f9e8a4eee1d73709b067d1.zip
Update default deprecation horizon
Because the master branch is already 6.0.
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/deprecation.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb
index a1ad2ca465..7271ab565b 100644
--- a/activesupport/lib/active_support/deprecation.rb
+++ b/activesupport/lib/active_support/deprecation.rb
@@ -35,7 +35,7 @@ module ActiveSupport
# and the second is a library name.
#
# ActiveSupport::Deprecation.new('2.0', 'MyLibrary')
- def initialize(deprecation_horizon = "6.0", gem_name = "Rails")
+ def initialize(deprecation_horizon = "6.1", gem_name = "Rails")
self.gem_name = gem_name
self.deprecation_horizon = deprecation_horizon
# By default, warnings are not silenced and debugging is off.