diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-28 05:03:05 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-03-28 05:03:05 +0000 |
commit | 479b4fb5d998aebcec6872f1514142e4f387fd23 (patch) | |
tree | 2b775c2ccdab884d8c17e3815e5ac05e0c444d23 /activerecord | |
parent | 9babb2014ba101e8c4a7b7808c3e3624ee7bb8d7 (diff) | |
download | rails-479b4fb5d998aebcec6872f1514142e4f387fd23.tar.gz rails-479b4fb5d998aebcec6872f1514142e4f387fd23.tar.bz2 rails-479b4fb5d998aebcec6872f1514142e4f387fd23.zip |
Made ready for release
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4088 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 | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 3986cb52bc..81722474ff 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.14.0* (March 27th, 2005) * Replace 'rescue Object' with a finer grained rescue. Closes #4431. [Nicholas Seckar] diff --git a/activerecord/Rakefile b/activerecord/Rakefile index afb2a6d2cb..2a784a94a8 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -106,7 +106,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.5' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.3.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 6abddb37d8..b98987e079 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 = 13 - TINY = 2 + MINOR = 14 + TINY = 0 STRING = [MAJOR, MINOR, TINY].join('.') end |