diff options
author | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2018-01-31 14:27:45 +0900 |
---|---|---|
committer | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2018-01-31 14:27:45 +0900 |
commit | 3ba52d6a2b6708c408f9e8a4eee1d73709b067d1 (patch) | |
tree | bcc88b88652b9a0c0bebe5ce19946ff99149955b /activesupport/lib | |
parent | 9709b004b4127dfe33492df0a807ae501b78bfd6 (diff) | |
download | rails-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/lib')
-rw-r--r-- | activesupport/lib/active_support/deprecation.rb | 2 |
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. |