Skip to content

Commit

Permalink
Prepare versions for release
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/branches/stable@3250 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Dec 8, 2005
1 parent 57e992d commit 93bd3b0
Show file tree
Hide file tree
Showing 17 changed files with 27 additions and 21 deletions.
3 changes: 3 additions & 0 deletions actionmailer/CHANGELOG
@@ -1,5 +1,8 @@
*1.1.4* (December 7th, 2005)

* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]



*1.1.3* (November 7th, 2005) *1.1.3* (November 7th, 2005)


* Allow Mailers to have custom initialize methods that set default instance variables for all mail actions #2563 [mrj@bigpond.net.au] * Allow Mailers to have custom initialize methods that set default instance variables for all mail actions #2563 [mrj@bigpond.net.au]
Expand Down
2 changes: 1 addition & 1 deletion actionmailer/Rakefile
Expand Up @@ -53,7 +53,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer" s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org" s.homepage = "http://www.rubyonrails.org"


s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD) s.add_dependency('actionpack', '= 1.11.1' + PKG_BUILD)


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


STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG
@@ -1,4 +1,4 @@
*SVN* *1.11.1* (December 7th, 2005)


* More robust relative url root discovery for SCGI compatibility. This solves the 'SCGI routes problem' -- you no longer need to prefix all your routes with the name of the SCGI mountpoint. #3070 [Dave Ringoen] * More robust relative url root discovery for SCGI compatibility. This solves the 'SCGI routes problem' -- you no longer need to prefix all your routes with the name of the SCGI mountpoint. #3070 [Dave Ringoen]


Expand Down
2 changes: 1 addition & 1 deletion actionpack/Rakefile
Expand Up @@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true s.has_rdoc = true
s.requirements << 'none' s.requirements << 'none'


s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD) s.add_dependency('activesupport', '= 1.2.4' + PKG_BUILD)


s.require_path = 'lib' s.require_path = 'lib'
s.autorequire = 'action_controller' s.autorequire = 'action_controller'
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_pack/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionPack
module VERSION #:nodoc: module VERSION #:nodoc:
MAJOR = 1 MAJOR = 1
MINOR = 11 MINOR = 11
TINY = 0 TINY = 1


STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end end
Expand Down
3 changes: 2 additions & 1 deletion actionwebservice/CHANGELOG
@@ -1,11 +1,12 @@
*SVN* *0.9.4* (December 7th, 2005)


* Update from LGPL to MIT license as per Minero Aoki's permission. [Marcel Molina Jr.] * Update from LGPL to MIT license as per Minero Aoki's permission. [Marcel Molina Jr.]


* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]


* Fix that XML-RPC date/time values did not have well-defined behaviour (#2516, #2534). This fix has one caveat, in that we can't support pre-1970 dates from XML-RPC clients. * Fix that XML-RPC date/time values did not have well-defined behaviour (#2516, #2534). This fix has one caveat, in that we can't support pre-1970 dates from XML-RPC clients.



*0.9.3* (November 7th, 2005) *0.9.3* (November 7th, 2005)


* Upgraded to Action Pack 1.11.0 and Active Record 1.13.0 * Upgraded to Action Pack 1.11.0 and Active Record 1.13.0
Expand Down
4 changes: 2 additions & 2 deletions actionwebservice/Rakefile
Expand Up @@ -63,8 +63,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws" s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org" s.homepage = "http://www.rubyonrails.org"


s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD) s.add_dependency('actionpack', '= 1.11.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD) s.add_dependency('activerecord', '= 1.13.1' + PKG_BUILD)


s.has_rdoc = true s.has_rdoc = true
s.requirements << 'none' s.requirements << 'none'
Expand Down
2 changes: 1 addition & 1 deletion actionwebservice/lib/action_web_service/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActionWebService
module VERSION module VERSION
MAJOR = 0 MAJOR = 0
MINOR = 9 MINOR = 9
TINY = 3 TINY = 4


STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/CHANGELOG
@@ -1,4 +1,4 @@
* SVN* *1.13.1* (December 7th, 2005)


* MySQL: more robust test for nullified result hashes. #3124 [Stefan Kaes] * MySQL: more robust test for nullified result hashes. #3124 [Stefan Kaes]


Expand Down
2 changes: 1 addition & 1 deletion activerecord/Rakefile
Expand Up @@ -106,7 +106,7 @@ spec = Gem::Specification.new do |s|
s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) } s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
end end


s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD) s.add_dependency('activesupport', '= 1.2.4' + PKG_BUILD)


s.files.delete "test/fixtures/fixture_database.sqlite" s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite" s.files.delete "test/fixtures/fixture_database_2.sqlite"
Expand Down
2 changes: 1 addition & 1 deletion activerecord/lib/active_record/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveRecord
module VERSION #:nodoc: module VERSION #:nodoc:
MAJOR = 1 MAJOR = 1
MINOR = 13 MINOR = 13
TINY = 0 TINY = 1


STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end end
Expand Down
3 changes: 2 additions & 1 deletion activesupport/CHANGELOG
@@ -1,7 +1,8 @@
*SVN* *1.2.4* (December 7th, 2005)


* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]



*1.2.3* (November 7th, 2005) *1.2.3* (November 7th, 2005)


* Change Inflector#constantize to use eval instead of const_get. [Nicholas Seckar] * Change Inflector#constantize to use eval instead of const_get. [Nicholas Seckar]
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Expand Up @@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc: module VERSION #:nodoc:
MAJOR = 1 MAJOR = 1
MINOR = 2 MINOR = 2
TINY = 3 TINY = 4


STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end end
Expand Down
3 changes: 2 additions & 1 deletion railties/CHANGELOG
@@ -1,4 +1,4 @@
*SVN* *0.14.4 (RC5)* (December 7th, 2005)


* Add builtin/ to the gemspec. Closes #3047. [Nicholas Seckar, Sam Stephenson] * Add builtin/ to the gemspec. Closes #3047. [Nicholas Seckar, Sam Stephenson]


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


* Added an omnipresent RailsInfoController with a properties action that delivers an HTML rendering of Rails::Info (but only when local_request? is true). Added a new default index.html which fetches this with Ajax. [Sam Stephenson] * Added an omnipresent RailsInfoController with a properties action that delivers an HTML rendering of Rails::Info (but only when local_request? is true). Added a new default index.html which fetches this with Ajax. [Sam Stephenson]



*0.14.3 (RC4)* (November 7th, 2005) *0.14.3 (RC4)* (November 7th, 2005)


* Add 'add_new_scripts' rake task for adding new rails scripts to script/* [Jamis Buck] * Add 'add_new_scripts' rake task for adding new rails scripts to script/* [Jamis Buck]
Expand Down
10 changes: 5 additions & 5 deletions railties/Rakefile
Expand Up @@ -273,11 +273,11 @@ spec = Gem::Specification.new do |s|
EOF EOF


s.add_dependency('rake', '>= 0.6.2') s.add_dependency('rake', '>= 0.6.2')
s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD) s.add_dependency('activesupport', '= 1.2.4' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD) s.add_dependency('activerecord', '= 1.13.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD) s.add_dependency('actionpack', '= 1.11.1' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.1.3' + PKG_BUILD) s.add_dependency('actionmailer', '= 1.1.4' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 0.9.3' + PKG_BUILD) s.add_dependency('actionwebservice', '= 0.9.4' + PKG_BUILD)


s.rdoc_options << '--exclude' << '.' s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false s.has_rdoc = false
Expand Down
2 changes: 1 addition & 1 deletion railties/lib/rails_version.rb
Expand Up @@ -2,7 +2,7 @@ module Rails
module VERSION #:nodoc: module VERSION #:nodoc:
MAJOR = 0 MAJOR = 0
MINOR = 14 MINOR = 14
TINY = 3 TINY = 4


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

0 comments on commit 93bd3b0

Please sign in to comment.