diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-11-29 00:27:53 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-11-29 00:27:53 +0000 |
commit | 54a75de3ecabf5dd07a60c27d21fc4e0671904c0 (patch) | |
tree | db13dd66f171915887fd9483d041b3101be810e4 /activerecord | |
parent | 3a3e7efee9443fad159dc88a670ad28f12b98438 (diff) | |
download | rails-54a75de3ecabf5dd07a60c27d21fc4e0671904c0.tar.gz rails-54a75de3ecabf5dd07a60c27d21fc4e0671904c0.tar.bz2 rails-54a75de3ecabf5dd07a60c27d21fc4e0671904c0.zip |
Prep for RC2
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8233 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG | 2 | ||||
-rwxr-xr-x | activerecord/Rakefile | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/version.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 1cf65193a6..f2f79fd823 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*2.0.0 [RC2]* (November 28th, 2007) * Foxy fixtures: support single-table inheritance. #10234 [tom] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index bff4561cf1..766cfaa95f 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -172,7 +172,7 @@ spec = Gem::Specification.new do |s| s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) } end - s.add_dependency('activesupport', '= 1.99.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) s.files.delete "test/fixtures/fixture_database.sqlite" s.files.delete "test/fixtures/fixture_database_2.sqlite" diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb index f32cb5b2f3..c111082ffc 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 = 1 MINOR = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end |