diff options
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG | 3 | ||||
-rwxr-xr-x | activerecord/Rakefile | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/version.rb | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 585f9d602e..def38e20cc 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.12.2* (October 26th, 2005) * Allow symbols to rename columns when using SQLite adapter. #2531 [kevin.clark@gmail.com] @@ -12,6 +12,7 @@ * Make all tests runnable on their own. #2521. [Blair Zajac <blair@orcaware.com>] + *1.12.1* (October 19th, 2005) * Always parenthesize :conditions options so they may be safely combined with STI and constraints. diff --git a/activerecord/Rakefile b/activerecord/Rakefile index c7dc13e51b..f96665c933 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -71,7 +71,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.2.1' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.2.2' + 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 5fc3de2cd2..1f930d6466 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 = 12 - TINY = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end |