Assume that the next version is going to be 2.3 for now

This commit is contained in:
David Heinemeier Hansson 2008-11-19 14:12:38 +01:00
parent e442448fa3
commit 51a19ae2bf
15 changed files with 25 additions and 25 deletions

View File

@ -1,4 +1,4 @@
*2.3.0/3.0*
*2.3.0 [Edge]*
* Fixed that no body charset would be set when there are attachments present #740 [Paweł Kondzior]

View File

@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "actionmailer"
s.homepage = "http://www.rubyonrails.org"
s.add_dependency('actionpack', '= 2.2.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.0' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'

View File

@ -1,8 +1,8 @@
module ActionMailer
module VERSION #:nodoc:
MAJOR = 2
MINOR = 2
TINY = 1
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,4 +1,4 @@
*2.3.0/3.0*
*2.3.0 [Edge]*
* Changed the default of ActionView#render to assume partials instead of files when not given an options hash [DHH]. Examples:

View File

@ -80,7 +80,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
s.add_dependency('activesupport', '= 2.2.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'

View File

@ -1,8 +1,8 @@
module ActionPack #:nodoc:
module VERSION #:nodoc:
MAJOR = 2
MINOR = 2
TINY = 1
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -171,7 +171,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', '= 2.2.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.files.delete FIXTURES_ROOT + "/fixture_database.sqlite"
s.files.delete FIXTURES_ROOT + "/fixture_database_2.sqlite"

View File

@ -1,8 +1,8 @@
module ActiveRecord
module VERSION #:nodoc:
MAJOR = 2
MINOR = 2
TINY = 1
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -65,7 +65,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', '= 2.2.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'active_resource'

View File

@ -1,8 +1,8 @@
module ActiveResource
module VERSION #:nodoc:
MAJOR = 2
MINOR = 2
TINY = 1
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,4 +1,4 @@
*2.3.0/3.0*
*2.3.0 [Edge]*
* Added Enumerable#none? to check that none of the elements match the block #1408 [Damian Janowski]

View File

@ -1,8 +1,8 @@
module ActiveSupport
module VERSION #:nodoc:
MAJOR = 2
MINOR = 2
TINY = 1
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end

View File

@ -1,4 +1,4 @@
*2.3.0/3.0*
*2.3.0 [Edge]*
* Added config.i18n settings gatherer to config/environment, auto-loading of all locales in config/locales/*.rb,yml, and config/locales/en.yml as a sample locale [DHH]

View File

@ -361,11 +361,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.8.3')
s.add_dependency('activesupport', '= 2.2.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.2.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.2.1' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.2.1' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.2.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 2.3.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 2.3.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 2.3.0' + PKG_BUILD)
s.add_dependency('activeresource', '= 2.3.0' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false

View File

@ -1,8 +1,8 @@
module Rails
module VERSION #:nodoc:
MAJOR = 2
MINOR = 2
TINY = 1
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end