aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:36:18 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:36:18 +0000
commit4259199c2cfd3ab4d77acadc8ba158096a243ac0 (patch)
tree36960b80f5cad9c632f35fb02507381dbc052b67 /activerecord
parentfede0f573ebe64135c60d1ca2ef0c6e98819ba9e (diff)
downloadrails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.tar.gz
rails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.tar.bz2
rails-4259199c2cfd3ab4d77acadc8ba158096a243ac0.zip
Made ready for release of 0.13.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1814 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG4
-rwxr-xr-xactiverecord/Rakefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 94d29ef3b5..3c318df4f3 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.11.1* (11 July, 2005)
* Added support for limit and offset with eager loading of has_one and belongs_to associations. Using the options with has_many and has_and_belongs_to_many associations will now raise an ActiveRecord::ConfigurationError #1692 [Rick Olsen]
@@ -17,7 +17,7 @@
* Fixed first run of "rake migrate" on PostgreSQL by not expecting a return value on the id #1640
-*1.11.0* (5th July, 2005)
+*1.11.0* (6 July, 2005)
* Fixed that Yaml error message in fixtures hid the real error #1623 [Nicholas Seckar]
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index b0a41d373e..e74a777589 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activerecord'
-PKG_VERSION = '1.11.0' + PKG_BUILD
+PKG_VERSION = '1.11.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -82,7 +82,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.1.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.1.1' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"