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 /activesupport | |
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 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/version.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb index 9d2cf13260..9e8b3d7888 100644 --- a/activesupport/lib/active_support/version.rb +++ b/activesupport/lib/active_support/version.rb @@ -1,9 +1,9 @@ module ActiveSupport module VERSION #:nodoc: MAJOR = 3 - MINOR = 0 + MINOR = 1 TINY = 0 - BUILD = "rc" + BUILD = "beta" STRING = [MAJOR, MINOR, TINY, BUILD].join('.') end |