aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/crud.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-12-03 16:07:28 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2010-12-03 16:07:28 -0800
commitac6296ab8f9d38dbfa8149eb0c6e16d6957dd519 (patch)
tree9589191765c41c75c8ee6d6694b17a7676f11cb9 /lib/arel/crud.rb
parent7b3e8d67943c091d24ee4e4129a9b1892b7c7e6f (diff)
downloadrails-ac6296ab8f9d38dbfa8149eb0c6e16d6957dd519.tar.gz
rails-ac6296ab8f9d38dbfa8149eb0c6e16d6957dd519.tar.bz2
rails-ac6296ab8f9d38dbfa8149eb0c6e16d6957dd519.zip
only break backwards compatibility in major releases
Diffstat (limited to 'lib/arel/crud.rb')
-rw-r--r--lib/arel/crud.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/arel/crud.rb b/lib/arel/crud.rb
index ade1b9f424..ec58734456 100644
--- a/lib/arel/crud.rb
+++ b/lib/arel/crud.rb
@@ -22,7 +22,7 @@ module Arel
def update values
if $VERBOSE
warn <<-eowarn
-update (#{caller.first}) is deprecated and will be removed in ARel 2.2.0. Please
+update (#{caller.first}) is deprecated and will be removed in ARel 3.0.0. Please
switch to `compile_update`
eowarn
end
@@ -41,7 +41,7 @@ switch to `compile_update`
def insert values
if $VERBOSE
warn <<-eowarn
-insert (#{caller.first}) is deprecated and will be removed in ARel 2.2.0. Please
+insert (#{caller.first}) is deprecated and will be removed in ARel 3.0.0. Please
switch to `compile_insert`
eowarn
end
@@ -58,7 +58,7 @@ switch to `compile_insert`
def delete
if $VERBOSE
warn <<-eowarn
-delete (#{caller.first}) is deprecated and will be removed in ARel 2.2.0. Please
+delete (#{caller.first}) is deprecated and will be removed in ARel 3.0.0. Please
switch to `compile_delete`
eowarn
end