Skip to content

Commit

Permalink
Made ready for release
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/branches/stable@4488 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Jun 24, 2006
1 parent 83af5fe commit 755ff58
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 21 deletions.
5 changes: 5 additions & 0 deletions actionmailer/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
*1.2.2* (June 24th, 2006)

* Depend on Action Pack 1.12.2


*1.2.1* (April 6th, 2005)

* Be part of Rails 1.1.1
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.12.2' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActionMailer
module VERSION #:nodoc:
MAJOR = 1
MINOR = 2
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
7 changes: 5 additions & 2 deletions actionpack/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
*1.12.1* (April 6th, 2005)
*1.12.2* (June 24th, 2006)

* Refinement to avoid exceptions in traverse_to_controller.

* (Hackish) Fix loading of arbitrary files in Ruby's load path by traverse_to_controller. [Nicholas Seckar]


*1.12.1* (April 6th, 2006)

* Fixed that template extensions would be cached development mode #4624 [Stefan Kaes]

* Update to Prototype 1.5.0_rc0 [Sam Stephenson]
Expand Down Expand Up @@ -34,7 +37,7 @@
This can be used by deployment managers to set the asset id by application revision


*1.12.0* (March 27th, 2005)
*1.12.0* (March 27th, 2006)

* Add documentation for respond_to. [Jamis Buck]

Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 1
MINOR = 12
TINY = 1
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
5 changes: 5 additions & 0 deletions actionwebservice/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
*1.1.3* (June 24th, 2006)

* Rely on Action Pack 1.12.2 and Active Record 1.14.3


*1.1.2* (April 9th, 2005)

* Rely on Active Record 1.14.2
Expand Down
4 changes: 2 additions & 2 deletions actionwebservice/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.14.2' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.12.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.14.3' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion actionwebservice/lib/action_web_service/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActionWebService
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
TINY = 2
TINY = 3

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
9 changes: 5 additions & 4 deletions activerecord/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*SVN*
*1.14.3* (June 24th, 2006)

* Properly quote index names in migrations (closes #4764) [John Long]

Expand All @@ -7,12 +7,12 @@
* Associations#select_limited_ids_list adds the ORDER BY columns to the SELECT DISTINCT List for postgresql. [Rick]


*1.14.2* (April 9th, 2005)
*1.14.2* (April 9th, 2006)

* Fixed calculations for the Oracle Adapter (closes #4626) [Michael Schoen]


*1.14.1* (April 6th, 2005)
*1.14.1* (April 6th, 2006)

* Fix type_name_with_module to handle type names that begin with '::'. Closes #4614. [Nicholas Seckar]

Expand Down Expand Up @@ -67,7 +67,7 @@
* Fixed broken OCIAdapter #4457 [schoenm@earthlink.net]


*1.14.0* (March 27th, 2005)
*1.14.0* (March 27th, 2006)

* Replace 'rescue Object' with a finer grained rescue. Closes #4431. [Nicholas Seckar]

Expand Down Expand Up @@ -487,6 +487,7 @@

* Fixed :through relations when using STI inherited classes would use the inherited class's name as foreign key on the join model [Tobias Luetke]


*1.13.2* (December 13th, 2005)

* Become part of Rails 1.0
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc:
MAJOR = 1
MINOR = 14
TINY = 2
TINY = 3

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
12 changes: 9 additions & 3 deletions railties/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
*1.1.2* (April 9th, 2005)
*1.1.3* (June 24th, 2006)

* Updated to Active Record 1.14.3, Action Pack 1.12.2, ActionWebService 1.1.3, ActionMailer 1.2.2


*1.1.2* (April 9th, 2006)

* Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [DHH]

* Fixed that boot.rb would set RAILS_GEM_VERSION twice, not respect an uncommented RAILS_GEM_VERSION line, and not use require_gem [DHH]


*1.1.1* (April 6th, 2005)
*1.1.1* (April 6th, 2006)

* Enhances plugin#discover allowing it to discover svn:// like URIs (closes #4565) [ruben.nine@gmail.com]

Expand Down Expand Up @@ -44,7 +49,7 @@
* Avoid passing escapeHTML non-string in Rails' info controller [Nicholas Seckar]


*1.1.0* (March 27th, 2005)
*1.1.0* (March 27th, 2006)

* Allow db:fixtures:load to load a subset of the applications fixtures. [Chad Fowler]

Expand Down Expand Up @@ -185,6 +190,7 @@

* Honor ActiveRecord::Base.pluralize_table_names when creating and destroying session store table. #3204. [rails@bencurtis.com, Marcel Molina Jr.]


*1.0.0* (December 13th, 2005)

* Update instructions on how to find and install generators. #3172. [Chad Fowler]
Expand Down
8 changes: 4 additions & 4 deletions railties/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -279,10 +279,10 @@ spec = Gem::Specification.new do |s|

s.add_dependency('rake', '>= 0.7.1')
s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.14.2' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.12.1' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.2.1' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 1.1.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.14.3' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.12.2' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.2.2' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 1.1.3' + PKG_BUILD)

s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc:
MAJOR = 1
MINOR = 1
TINY = 2
TINY = 3

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down

0 comments on commit 755ff58

Please sign in to comment.