Skip to content

Commit

Permalink
Made ready to push RC2
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2684 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Oct 19, 2005
1 parent 328ef3f commit 83dc37b
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
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.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 1.10.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)

s.has_rdoc = true
s.requirements << 'none'
Expand Down
3 changes: 3 additions & 0 deletions actionpack/CHANGELOG
@@ -1,7 +1,10 @@
*1.10.1* (October 19th, 2005)

* Update error trace templates [Nicholas Seckar]

* Stop showing generated routing code in application traces [Nicholas Seckar]


*1.10.0* (October 16th, 2005)

* Make string-keys locals assigns optional. Add documentation describing depreciated state [skaes@web.de]
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:
MAJOR = 1
MINOR = 10
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
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.homepage = "http://www.rubyonrails.org"

s.add_dependency('actionpack', '= 1.10.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.12.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)

s.has_rdoc = true
Expand Down
3 changes: 2 additions & 1 deletion activerecord/CHANGELOG
@@ -1,11 +1,12 @@
*1.12.1*
*1.12.1* (October 19th, 2005)

* Always parenthesize :conditions options so they may be safely combined with STI and constraints.

* Correct PostgreSQL primary key sequence detection. #2507 [tmornini@infomania.com]

* Added support for using limits in eager loads that involve has_many and has_and_belongs_to_many associations


*1.12.0* (October 16th, 2005)

* Update/clean up documentation (rdoc)
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:
MAJOR = 1
MINOR = 12
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
4 changes: 4 additions & 0 deletions railties/CHANGELOG
@@ -1,5 +1,9 @@
*0.14.1* (October 19th, 2005)

* Remove trailing '/' from RAILS_ROOT [Nicholas Seckar]

* Upgraded to Active Record 1.12.1 and Action Pack 1.10.1


*0.14.0* (October 16th, 2005)

Expand Down
4 changes: 2 additions & 2 deletions railties/Rakefile
Expand Up @@ -274,8 +274,8 @@ spec = Gem::Specification.new do |s|

s.add_dependency('rake', '>= 0.6.2')
s.add_dependency('activesupport', '= 1.2.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.12.0' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.10.0' + PKG_BUILD)
s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
s.add_dependency('actionmailer', '= 1.1.0' + PKG_BUILD)
s.add_dependency('actionwebservice', '= 0.9.0' + PKG_BUILD)

Expand Down

0 comments on commit 83dc37b

Please sign in to comment.