提交 93bd3b00 编写于 作者: D David Heinemeier Hansson

Prepare versions for release

git-svn-id: http://svn-commit.rubyonrails.org/rails/branches/stable@3250 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 57e992dc
*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]
......
...@@ -53,7 +53,7 @@ spec = Gem::Specification.new do |s| ...@@ -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'
......
...@@ -2,7 +2,7 @@ module ActionMailer ...@@ -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
......
*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]
......
...@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s| ...@@ -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'
......
...@@ -2,7 +2,7 @@ module ActionPack ...@@ -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
......
*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.]
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
* 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
......
...@@ -63,8 +63,8 @@ spec = Gem::Specification.new do |s| ...@@ -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'
......
...@@ -2,7 +2,7 @@ module ActionWebService ...@@ -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
......
* 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]
......
...@@ -106,7 +106,7 @@ spec = Gem::Specification.new do |s| ...@@ -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"
......
...@@ -2,7 +2,7 @@ module ActiveRecord ...@@ -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
......
*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]
......
...@@ -2,7 +2,7 @@ module ActiveSupport ...@@ -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
......
*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]
...@@ -48,6 +48,7 @@ ...@@ -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]
......
...@@ -273,11 +273,11 @@ spec = Gem::Specification.new do |s| ...@@ -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
......
...@@ -2,7 +2,7 @@ module Rails ...@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册