Skip to content

Commit

Permalink
Update versions to match latest from stable
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3543 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Feb 5, 2006
1 parent 5450538 commit 0633bb8
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
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.11.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.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 = 1
TINY = 3
TINY = 5

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion actionpack/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'

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

s.require_path = 'lib'
s.autorequire = 'action_controller'
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
module VERSION #:nodoc:
MAJOR = 1
MINOR = 11
TINY = 0
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 2 additions & 2 deletions actionwebservice/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.2' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.2' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
6 changes: 3 additions & 3 deletions actionwebservice/lib/action_web_service/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module ActionWebService
module VERSION
MAJOR = 0
MINOR = 9
TINY = 3
MAJOR = 1
MINOR = 0
TINY = 0

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activerecord/Rakefile
Original file line number Diff line number Diff line change
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" ) }
end

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

s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
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 = 13
TINY = 0
TINY = 2

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion activesupport/lib/active_support/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActiveSupport
module VERSION #:nodoc:
MAJOR = 1
MINOR = 2
TINY = 3
TINY = 5

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
10 changes: 5 additions & 5 deletions railties/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,11 @@ spec = Gem::Specification.new do |s|
EOF

s.add_dependency('rake', '>= 0.6.2')
s.add_dependency('activesupport', '= 1.2.3' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.13.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.11.0' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.1.3' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 0.9.3' + PKG_BUILD)
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.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
Expand Down
6 changes: 3 additions & 3 deletions railties/lib/rails_version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module Rails
module VERSION #:nodoc:
MAJOR = 0
MINOR = 14
TINY = 3
MAJOR = 1
MINOR = 0
TINY = 0

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

0 comments on commit 0633bb8

Please sign in to comment.