diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2010-08-23 21:44:57 -0500 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-08-23 21:44:57 -0500 |
commit | 21b1f29720fa503071a12831162d975e48f2b5f9 (patch) | |
tree | 624ff4521d5a26d5b17619e0230b316d18a88c9b /activerecord | |
parent | 96f3bcb816f0553be6c60cf45597222b1f787591 (diff) | |
download | rails-21b1f29720fa503071a12831162d975e48f2b5f9.tar.gz rails-21b1f29720fa503071a12831162d975e48f2b5f9.tar.bz2 rails-21b1f29720fa503071a12831162d975e48f2b5f9.zip |
Master is now targeting 3.1.0.beta
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/version.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb index a467ffa960..89eba15be1 100644 --- a/activerecord/lib/active_record/version.rb +++ b/activerecord/lib/active_record/version.rb @@ -1,9 +1,9 @@ module ActiveRecord module VERSION #:nodoc: MAJOR = 3 - MINOR = 0 + MINOR = 1 TINY = 0 - BUILD = "rc" + BUILD = "beta" STRING = [MAJOR, MINOR, TINY, BUILD].join('.') end |