From 4259199c2cfd3ab4d77acadc8ba158096a243ac0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 11 Jul 2005 07:36:18 +0000 Subject: Made ready for release of 0.13.1 git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1814 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/CHANGELOG | 5 +++++ actionmailer/Rakefile | 4 ++-- actionmailer/lib/action_mailer.rb | 2 +- actionpack/CHANGELOG | 2 +- actionpack/README | 2 +- actionpack/Rakefile | 4 ++-- actionpack/lib/action_controller/auto_complete.rb | 2 +- actionwebservice/CHANGELOG | 3 ++- actionwebservice/Rakefile | 8 ++++---- activerecord/CHANGELOG | 4 ++-- activerecord/Rakefile | 4 ++-- activesupport/CHANGELOG | 4 ++-- activesupport/Rakefile | 2 +- railties/CHANGELOG | 4 ++-- railties/Rakefile | 14 +++++++------- 15 files changed, 35 insertions(+), 29 deletions(-) diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG index b0740a4836..28730a9152 100644 --- a/actionmailer/CHANGELOG +++ b/actionmailer/CHANGELOG @@ -1,3 +1,8 @@ +*1.0.1* (11 July, 2005) + +* Bind to Action Pack 1.9.1 + + *1.0.0* (6 July, 2005) * Avoid adding nil header values #1392 diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index 3b17da5caf..a6bca5e6b0 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 = '1.0.0' + PKG_BUILD +PKG_VERSION = '1.0.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" RELEASE_NAME = "REL #{PKG_VERSION}" @@ -52,7 +52,7 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "actionmailer" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.9.1' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' diff --git a/actionmailer/lib/action_mailer.rb b/actionmailer/lib/action_mailer.rb index 4bc7e83857..5a24b0861e 100755 --- a/actionmailer/lib/action_mailer.rb +++ b/actionmailer/lib/action_mailer.rb @@ -28,7 +28,7 @@ rescue LoadError require File.dirname(__FILE__) + '/../../actionpack/lib/action_controller' rescue LoadError require 'rubygems' - require_gem 'actionpack', '>= 1.9.0' + require_gem 'actionpack', '>= 1.9.1' end end diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index c692a3d40a..15d84dab54 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.9.1* (11 July, 2005) * Fixed that Action View should always use the included Builder, never attempt to require the gem, to ensure compatibility diff --git a/actionpack/README b/actionpack/README index 8590af9f0b..1a2da631b1 100755 --- a/actionpack/README +++ b/actionpack/README @@ -174,7 +174,7 @@ A short rundown of the major features: link_to_remote "Delete this post", :update => "posts", :url => { :action => "destroy", :id => post.id } - {Learn more}[link:classes/ActionView/Helpers/JavascriptHelper.html] + {Learn more}[link:classes/ActionView/Helpers/JavaScriptHelper.html] * Pagination for navigating lists of results. diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 3c93262d1c..b7059cd04f 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.9.0' + PKG_BUILD +PKG_VERSION = '1.9.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" RELEASE_NAME = "REL #{PKG_VERSION}" @@ -61,7 +61,7 @@ spec = Gem::Specification.new do |s| s.has_rdoc = true s.requirements << 'none' - s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.1.1' + PKG_BUILD) s.require_path = 'lib' s.autorequire = 'action_controller' diff --git a/actionpack/lib/action_controller/auto_complete.rb b/actionpack/lib/action_controller/auto_complete.rb index 3f6694fc88..26e438e0fd 100644 --- a/actionpack/lib/action_controller/auto_complete.rb +++ b/actionpack/lib/action_controller/auto_complete.rb @@ -24,7 +24,7 @@ module ActionController # auto_complete_for :post, :title, :limit => 15, :order => 'created_at DESC' # # For help on defining text input fields with autocompletion, - # see ActionView::Helpers::JavascriptHelper. + # see ActionView::Helpers::JavaScriptHelper. # # For more examples, see script.aculo.us: # * http://script.aculo.us/demos/ajax/autocompleter diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG index 5a91d7d07a..2f97acd533 100644 --- a/actionwebservice/CHANGELOG +++ b/actionwebservice/CHANGELOG @@ -1,7 +1,8 @@ -*SVN* +*0.8.1* (11 July, 2005) * Fix scaffolding for Action Pack controller changes + *0.8.0* (6 July, 2005) * Fix WSDL generation by aliasing #inherited instead of trying to overwrite it, or the WSDL action may end up not being defined in the controller diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index 479205691c..24d1a0ea6f 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.8.0' + PKG_BUILD +PKG_VERSION = '0.8.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" @@ -62,9 +62,9 @@ spec = Gem::Specification.new do |s| s.rubyforge_project = "aws" s.homepage = "http://www.rubyonrails.org" - s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.11.0' + PKG_BUILD) - s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.9.1' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.11.1' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.1.1' + PKG_BUILD) s.has_rdoc = true s.requirements << 'none' 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" diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG index 0afb5f62b1..7c2b000a1d 100644 --- a/activesupport/CHANGELOG +++ b/activesupport/CHANGELOG @@ -1,9 +1,9 @@ -*SVN* +*1.1.1* (11 July, 2005) * Added more efficient implementation of the development mode reset of classes #1638 [Chris McGrath] -*1.1.0* +*1.1.0* (6 July, 2005) * Fixed conflict with Glue gem #1606 [Rick Olson] diff --git a/activesupport/Rakefile b/activesupport/Rakefile index c71967a624..7ecfd9cadf 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.1.0' + PKG_BUILD +PKG_VERSION = '1.1.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" RELEASE_NAME = "REL #{PKG_VERSION}" diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 8bba746431..cc0cabe9f0 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*0.13.1* (11 July, 2005) * Fixed that each request with the WEBrick adapter would open a new database connection #1685 [Sam Stephenson] @@ -11,7 +11,7 @@ * Improved documentation for environment config files #1625 [court3nay@gmail.com] -*0.13.0* +*0.13.0* (6 July, 2005) * Changed the default logging level in config/environment.rb to INFO for production (so SQL statements won't be logged) diff --git a/railties/Rakefile b/railties/Rakefile index ec706f827d..8492666f87 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.13.0' + PKG_BUILD +PKG_VERSION = '0.13.1' + PKG_BUILD PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" @@ -247,15 +247,15 @@ spec = Gem::Specification.new do |s| s.summary = "Web-application framework with template engine, control-flow layer, and ORM." s.description = <<-EOF Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick - on top of either MySQL, PostgreSQL, or SQLite with eRuby-based templates. + on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates. EOF s.add_dependency('rake', '>= 0.5.3') - s.add_dependency('activesupport', '= 1.1.0' + PKG_BUILD) - s.add_dependency('activerecord', '= 1.11.0' + PKG_BUILD) - s.add_dependency('actionpack', '= 1.9.0' + PKG_BUILD) - s.add_dependency('actionmailer', '= 1.0.0' + PKG_BUILD) - s.add_dependency('actionwebservice', '= 0.8.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.1.1' + PKG_BUILD) + s.add_dependency('activerecord', '= 1.11.1' + PKG_BUILD) + s.add_dependency('actionpack', '= 1.9.1' + PKG_BUILD) + s.add_dependency('actionmailer', '= 1.0.1' + PKG_BUILD) + s.add_dependency('actionwebservice', '= 0.8.1' + PKG_BUILD) s.rdoc_options << '--exclude' << '.' s.has_rdoc = false -- cgit v1.2.3