aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-27 14:10:42 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-27 14:10:42 +0000
commit04c7e82369f179918d6b4177bcb8121a294afd73 (patch)
tree6ff822c74f10cb115137ea5552f2f5a329fe4d41
parent55cb8c8f0d36b02a005ba784e5c4794c1d40d74a (diff)
downloadrails-04c7e82369f179918d6b4177bcb8121a294afd73.tar.gz
rails-04c7e82369f179918d6b4177bcb8121a294afd73.tar.bz2
rails-04c7e82369f179918d6b4177bcb8121a294afd73.zip
Made ready for the release of 0.11.1
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1023 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--actionmailer/CHANGELOG2
-rwxr-xr-xactionmailer/Rakefile5
-rw-r--r--actionpack/CHANGELOG2
-rwxr-xr-xactionpack/Rakefile5
-rw-r--r--actionwebservice/CHANGELOG5
-rw-r--r--actionwebservice/Rakefile9
-rw-r--r--activerecord/CHANGELOG4
-rwxr-xr-xactiverecord/Rakefile52
-rw-r--r--activesupport/CHANGELOG4
-rw-r--r--activesupport/Rakefile3
-rw-r--r--railties/CHANGELOG4
-rw-r--r--railties/Rakefile12
-rwxr-xr-xrailties/fresh_rakefile2
13 files changed, 43 insertions, 66 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 14ceb687e7..722311d4d0 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.8.1* (27th March, 2005)
* Fixed that if charset was found that the end of a mime part declaration TMail would throw an error #919 [lon@speedymac.com]
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index ee04062f3c..22c3f8ad71 100755
--- a/actionmailer/Rakefile
+++ b/actionmailer/Rakefile
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionmailer'
-PKG_VERSION = '0.8.0' + PKG_BUILD
+PKG_VERSION = '0.8.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -32,6 +32,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "Action Mailer -- Easy email delivery and testing"
rdoc.options << '--line-numbers --inline-source --main README'
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README', 'CHANGELOG')
rdoc.rdoc_files.include('lib/action_mailer.rb')
rdoc.rdoc_files.include('lib/action_mailer/*.rb')
@@ -51,7 +52,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.6.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.7.0' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 71f45c431e..b921ab034f 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.7.0* (27th March, 2005)
* Added ActionController::Base.page_cache_extension for setting the page cache file extension (the default is .html) #903 [Andreas]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index f8fc1d5681..37199168b5 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionpack'
-PKG_VERSION = '1.6.0' + PKG_BUILD
+PKG_VERSION = '1.7.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -37,6 +37,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "Action Pack -- On rails from request to response"
rdoc.options << '--line-numbers --inline-source --main README'
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
rdoc.rdoc_files.include('lib/**/*.rb')
}
@@ -60,7 +61,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.0.2' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index 7e062fb682..8aa92ba880 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,7 +1,8 @@
-*0.7.0* (Unreleased)
+*0.6.2* (27th March, 2005)
* Allow method declarations for direct dispatching to declare parameters as well. We treat an arity of < 0 or > 0 as an indication that we should send through parameters. Closes #939.
-
+
+
*0.6.1* (22th March, 2005)
* Fix that method response QNames mismatched with that declared in the WSDL, makes SOAP::WSDLDriverFactory work against AWS again
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index d676d2e81f..a54d72069f 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -9,7 +9,7 @@ require 'fileutils'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionwebservice'
-PKG_VERSION = '0.6.1' + PKG_BUILD
+PKG_VERSION = '0.6.2' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -35,6 +35,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "Action Web Service -- Web services for Action Pack"
rdoc.options << '--line-numbers --inline-source --main README --accessor class_inheritable_option=RW'
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('CHANGELOG')
rdoc.rdoc_files.include('lib/action_web_service.rb')
@@ -61,9 +62,9 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.6.0' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.9.0' + PKG_BUILD)
- s.add_dependency('activesupport', '= 1.0.2' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.7.0' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.9.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 3f6fed17b5..ffd99de945 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,6 @@
-*SVN*
+*1.9.1* (27th March, 2005)
+
+* Fixed that Active Record objects with float attribute could not be cloned #808
* Fixed that MissingSourceFile's wasn't properly detected in production mode #925 [Nicholas Seckar]
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index dd91c58730..a159e05c8c 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.9.0' + PKG_BUILD
+PKG_VERSION = '1.9.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -38,47 +38,14 @@ Rake::TestTask.new("test_mysql_ruby") { |t|
t.verbose = true
}
-Rake::TestTask.new("test_postgresql") { |t|
- t.libs << "test" << "test/connections/native_postgresql"
- t.pattern = 'test/*_test.rb'
- t.verbose = true
-}
-
-Rake::TestTask.new("test_sqlite") { |t|
- t.libs << "test" << "test/connections/native_sqlite"
- t.pattern = 'test/*_test.rb'
- t.verbose = true
-}
-
-Rake::TestTask.new("test_sqlite3") { |t|
- t.libs << "test" << "test/connections/native_sqlite3"
- t.pattern = 'test/*_test.rb'
- t.verbose = true
-}
-
-Rake::TestTask.new("test_sqlserver") { |t|
- t.libs << "test" << "test/connections/native_sqlserver"
- t.pattern = 'test/*_test.rb'
- t.verbose = true
-}
-
-Rake::TestTask.new("test_db2") { |t|
- t.libs << "test" << "test/connections/native_db2"
- t.pattern = 'test/*_test.rb'
- t.verbose = true
-}
-
-Rake::TestTask.new("test_oracle") { |t|
- t.libs << "test" << "test/connections/native_oracle"
- t.pattern = 'test/*_test.rb'
- t.verbose = true
-}
+for adapter in %( postgresql sqlite sqlite3 sqlserver db2 oci )
+ Rake::TestTask.new("test_#{adapter}") { |t|
+ t.libs << "test" << "test/connections/native_#{adapter}"
+ t.pattern = 'test/*_test.rb'
+ t.verbose = true
+ }
+end
-Rake::TestTask.new("test_oci") { |t|
- t.libs << "test" << "test/connections/native_oci"
- t.pattern = 'test/*_test.rb'
- t.verbose = true
-}
# Generate the RDoc documentation
@@ -86,6 +53,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "Active Record -- Object-relation mapping put on rails"
rdoc.options << '--line-numbers --inline-source --accessor cattr_accessor=object'
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.rdoc_files.exclude('lib/active_record/vendor/*')
@@ -108,7 +76,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.0.2' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 9adac58cdf..c6af6c288d 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.0.3* (27th March, 2005)
* Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat]
@@ -11,7 +11,7 @@
1/0 rescue nil # BAD, EVIL, DIRTY.
-*1.0.2*
+*1.0.2* (22th March, 2005)
* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman.
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 86137a2074..99e49e9083 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -5,7 +5,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'activesupport'
-PKG_VERSION = '1.0.2' + PKG_BUILD
+PKG_VERSION = '1.0.3' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
RELEASE_NAME = "REL #{PKG_VERSION}"
@@ -27,6 +27,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "Active Support -- Utility classes and standard library extensions from Rails"
rdoc.options << '--line-numbers --inline-source --main README'
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README', 'CHANGELOG')
rdoc.rdoc_files.include('lib/active_support.rb')
rdoc.rdoc_files.include('lib/active_support/*.rb')
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index ccf70bdd32..0f67752381 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,7 +1,9 @@
-*SVN*
+*0.11.1* (27th March, 2005)
* Fixed the dispatch.fcgi use of a logger
+* Upgraded to Active Record 1.9.1, Action Pack 1.7.0, Action Mailer 0.8.1, Action Web Service 0.6.2, Active Support 1.0.3
+
*0.11.0* (22th March, 2005)
diff --git a/railties/Rakefile b/railties/Rakefile
index c9d435d5c4..b6ae15a82c 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -9,7 +9,7 @@ require 'rbconfig'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'rails'
-PKG_VERSION = '0.11.0' + PKG_BUILD
+PKG_VERSION = '0.11.1' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
@@ -239,11 +239,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.5.0')
- s.add_dependency('activesupport', '= 1.0.2' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.9.0' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.6.0' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 0.8.0' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 0.6.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.9.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.7.0' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 0.8.1' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 0.6.2' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
diff --git a/railties/fresh_rakefile b/railties/fresh_rakefile
index cdeb0788e1..6f3cc61ae5 100755
--- a/railties/fresh_rakefile
+++ b/railties/fresh_rakefile
@@ -71,7 +71,7 @@ Rake::RDocTask.new("appdoc") { |rdoc|
desc "Generate documentation for the Rails framework"
Rake::RDocTask.new("apidoc") { |rdoc|
rdoc.rdoc_dir = 'doc/api'
- rdoc.template = 'jamis.rb' if ENV['template'] == 'jamis'
+ rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.title = "Rails Framework Documentation"
rdoc.options << '--line-numbers --inline-source'
rdoc.rdoc_files.include('README')