diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2010-02-03 17:29:51 -0800 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2010-02-03 17:29:51 -0800 |
commit | 79817aa9e7fa7c207868ca56ca8bbd0ee5303d81 (patch) | |
tree | 3a84e1fa7a28c4d20cfdafd20543aec69a28175c /activerecord | |
parent | ddb512c02b81406d10a932a19a365275d3f54849 (diff) | |
download | rails-79817aa9e7fa7c207868ca56ca8bbd0ee5303d81.tar.gz rails-79817aa9e7fa7c207868ca56ca8bbd0ee5303d81.tar.bz2 rails-79817aa9e7fa7c207868ca56ca8bbd0ee5303d81.zip |
Move to 3.0.0.beta
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/activerecord.gemspec | 6 | ||||
-rw-r--r-- | activerecord/lib/active_record/version.rb | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/activerecord.gemspec b/activerecord/activerecord.gemspec index 4fd1a0213c..a8c990e3cb 100644 --- a/activerecord/activerecord.gemspec +++ b/activerecord/activerecord.gemspec @@ -1,14 +1,14 @@ Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.name = 'activerecord' - s.version = '3.0.pre' + s.version = '3.0.0.beta' s.summary = "Implements the ActiveRecord pattern for ORM." s.description = %q{Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database tables and classes together for business objects, like Customer or Subscription, that can find, save, and destroy themselves without resorting to manual SQL.} s.files = Dir['CHANGELOG', 'README', 'examples/**/*', 'lib/**/*'] - s.add_dependency('activesupport', '= 3.0.pre') - s.add_dependency('activemodel', '= 3.0.pre') + s.add_dependency('activesupport', '= 3.0.0.beta') + s.add_dependency('activemodel', '= 3.0.0.beta') s.add_dependency('arel', '~> 0.2.0') s.require_path = 'lib' diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb index 10ef9d7594..d55b14f082 100644 --- a/activerecord/lib/active_record/version.rb +++ b/activerecord/lib/active_record/version.rb @@ -2,7 +2,7 @@ module ActiveRecord module VERSION #:nodoc: MAJOR = 3 MINOR = 0 - TINY = "pre" + TINY = "0.beta" STRING = [MAJOR, MINOR, TINY].join('.') end |