aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-04-06 05:26:14 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-04-06 05:26:14 +0000
commit944ae628f529a5392a543a88186415e87f462009 (patch)
tree75da7630316ca0c66c41074f85144cdac6c792d0 /activerecord
parent26e381302c7eee09b8d03d32dc7a8233098a9abf (diff)
downloadrails-944ae628f529a5392a543a88186415e87f462009.tar.gz
rails-944ae628f529a5392a543a88186415e87f462009.tar.bz2
rails-944ae628f529a5392a543a88186415e87f462009.zip
Update versions for Rails 1.1.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4183 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/Rakefile2
-rw-r--r--activerecord/lib/active_record/version.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index ce49e8ca17..2c48239303 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.14.1* (April 6th, 2005)
* Fixed that loading including associations returns all results if Load IDs For Limited Eager Loading returns none (closes #4528) [Rick]
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 2a784a94a8..4d842bff60 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.3.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.3.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 b98987e079..a8bf50c0f3 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 = 14
- TINY = 0
+ TINY = 1
STRING = [MAJOR, MINOR, TINY].join('.')
end