aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG4
-rwxr-xr-xactionmailer/Rakefile2
-rw-r--r--actionmailer/lib/action_mailer/version.rb4
-rw-r--r--actionpack/CHANGELOG6
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--actionpack/lib/action_pack/version.rb4
-rw-r--r--actionwebservice/CHANGELOG3
-rw-r--r--actionwebservice/Rakefile4
-rw-r--r--actionwebservice/lib/action_web_service/version.rb2
-rw-r--r--activerecord/CHANGELOG2
-rwxr-xr-xactiverecord/Rakefile2
-rw-r--r--activerecord/lib/active_record/version.rb4
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/version.rb4
-rw-r--r--railties/CHANGELOG2
-rw-r--r--railties/Rakefile10
16 files changed, 30 insertions, 27 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index c30eaa425e..c55061b1ce 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.2.0* (March 27th, 2005)
* Nil charset caused subject line to be improperly quoted in implicitly multipart messages #2662 [ehalvorsen+rails@runbox.com]
@@ -12,10 +12,12 @@
* Make sure TMail#attachments includes anything with content-disposition of "attachment", regardless of content-type [Jamis Buck]
+
*1.1.5* (December 13th, 2005)
* Become part of Rails 1.0
+
*1.1.4* (December 7th, 2005)
* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index 498298298b..3da850b966 100755
--- a/actionmailer/Rakefile
+++ b/actionmailer/Rakefile
@@ -54,7 +54,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb
index 02c6d83eb0..44e37853f1 100644
--- a/actionmailer/lib/action_mailer/version.rb
+++ b/actionmailer/lib/action_mailer/version.rb
@@ -1,8 +1,8 @@
module ActionMailer
module VERSION #:nodoc:
MAJOR = 1
- MINOR = 1
- TINY = 5
+ MINOR = 2
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 2cbd2acbed..82294a9299 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.12.0* (March 27th, 2005)
* Add documentation for respond_to. [Jamis Buck]
@@ -410,14 +410,14 @@ Default YAML web services were retired, ActionController::Base.param_parsers car
* Added FormHelper#form_for and FormHelper#fields_for that makes it easier to work with forms for single objects also if they don't reside in instance variables [DHH]. Examples:
- <% form_for :person => @person, :url => { :action => "update" } do |f| %>
+ <% form_for :person, @person, :url => { :action => "update" } do |f| %>
First name: <%= f.text_field :first_name %>
Last name : <%= f.text_field :last_name %>
Biography : <%= f.text_area :biography %>
Admin? : <%= f.check_box :admin %>
<% end %>
- <% form_for :person => person, :url => { :action => "update" } do |person_form| %>
+ <% form_for :person, person, :url => { :action => "update" } do |person_form| %>
First name: <%= person_form.text_field :first_name %>
Last name : <%= person_form.text_field :last_name %>
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 6be7e10407..f9b9acbb3b 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -68,7 +68,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.3.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index c90816aa98..8144599cbe 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -1,8 +1,8 @@
module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
- MINOR = 11
- TINY = 2
+ MINOR = 12
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index 6fb21f3ed6..ffa7f52e2a 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.1.0* (March 27th, 2005)
* Make ActiveWebService::Struct type reloadable
@@ -24,6 +24,7 @@
* Fix for incompatibility problems with SOAP4R 1.5.5 (#2553) [Kent Sibilev]
+
*1.0.0* (December 13th, 2005)
* Become part of Rails 1.0
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index e503862279..dedb2751d1 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -71,8 +71,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.13.2' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.14.0' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionwebservice/lib/action_web_service/version.rb b/actionwebservice/lib/action_web_service/version.rb
index 0dc1fb7e3c..cc265fd9a2 100644
--- a/actionwebservice/lib/action_web_service/version.rb
+++ b/actionwebservice/lib/action_web_service/version.rb
@@ -1,7 +1,7 @@
module ActionWebService
module VERSION #:nodoc:
MAJOR = 1
- MINOR = 0
+ MINOR = 1
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
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
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index b6a7c3990f..388cdb3b8f 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.3.0* (March 27th, 2005)
* When possible, avoid incorrectly obtaining constants from parent modules. Fixes #4221. [Nicholas Seckar]
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 6b3cff2e23..5332627a37 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -1,8 +1,8 @@
module ActiveSupport
module VERSION #:nodoc:
MAJOR = 1
- MINOR = 2
- TINY = 5
+ MINOR = 3
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 9ead1091b4..b32709299a 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.1.0* (March 27th, 2005)
* Allow db:fixtures:load to load a subset of the applications fixtures. [Chad Fowler]
diff --git a/railties/Rakefile b/railties/Rakefile
index 88454a5265..4d2e7cb6a3 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -278,11 +278,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.7.0')
- s.add_dependency('activesupport', '= 1.2.5' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.13.2' + PKG_BUILD)
- s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD)
- s.add_dependency('actionmailer', '= 1.1.5' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 1.0.0' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.3.0' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.14.0' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.12.0' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.2.0' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 1.1.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false