diff options
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG | 5 | ||||
-rwxr-xr-x | activerecord/Rakefile | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/version.rb | 6 |
3 files changed, 5 insertions, 8 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index c3b5a60a03..698ad6263a 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*2.0.0* (December 6th, 2007) * Fixed that the truncation of strings longer than 50 chars should use inspect so newlines etc are escaped #10385 [norbert] @@ -20,9 +20,6 @@ * Fix documentation typo introduced in [8250]. Closes #10339 [Henrik N] - -*2.0.0 [RC2]* (November 28th, 2007) - * Foxy fixtures: support single-table inheritance. #10234 [tom] * Foxy fixtures: allow mixed usage to make migration easier and more attractive. #10004 [lotswholetime] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 766cfaa95f..7b51c57240 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.1' + PKG_BUILD) + s.add_dependency('activesupport', '= 2.0.0' + 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 c111082ffc..da83c707ce 100644 --- a/activerecord/lib/active_record/version.rb +++ b/activerecord/lib/active_record/version.rb @@ -1,8 +1,8 @@ module ActiveRecord module VERSION #:nodoc: - MAJOR = 1 - MINOR = 99 - TINY = 1 + MAJOR = 2 + MINOR = 0 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end |