aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--actionmailer/CHANGELOG5
-rwxr-xr-xactionmailer/Rakefile2
-rw-r--r--actionmailer/lib/action_mailer/version.rb2
-rw-r--r--actionpack/CHANGELOG3
-rwxr-xr-xactionpack/Rakefile2
-rw-r--r--actionpack/lib/action_pack/version.rb2
-rw-r--r--actionwebservice/CHANGELOG5
-rw-r--r--actionwebservice/Rakefile5
-rw-r--r--actionwebservice/lib/action_web_service/version.rb2
-rw-r--r--activerecord/CHANGELOG3
-rwxr-xr-xactiverecord/Rakefile2
-rw-r--r--activerecord/lib/active_record/version.rb2
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/version.rb2
-rw-r--r--railties/CHANGELOG6
-rw-r--r--railties/Rakefile10
-rw-r--r--railties/lib/rails_version.rb2
17 files changed, 34 insertions, 23 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 16d7d3b318..7a1c1c664c 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,3 +1,8 @@
+*1.1.2* (October 26th, 2005)
+
+* Upgraded to Action Pack 1.10.2
+
+
*1.1.1* (October 19th, 2005)
* Upgraded to Action Pack 1.10.1
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile
index d6cbbf73d7..58fd70ffdc 100755
--- a/actionmailer/Rakefile
+++ b/actionmailer/Rakefile
@@ -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.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.10.2' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb
index 4dbc364e20..e13bf35fca 100644
--- a/actionmailer/lib/action_mailer/version.rb
+++ b/actionmailer/lib/action_mailer/version.rb
@@ -2,7 +2,7 @@ module ActionMailer
module Version #:nodoc:
MAJOR = 1
MINOR = 1
- TINY = 1
+ TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 028e7e7866..721ac3ac96 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.10.2* (October 26th, 2005)
* Reset template variables after using render_to_string [skaes@web.de]
@@ -6,6 +6,7 @@
* Abbreviate RAILS_ROOT in traces
+
*1.10.1* (October 19th, 2005)
* Update error trace templates [Nicholas Seckar]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index e8a3d22873..a90b2f2db2 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -62,7 +62,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.2.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.2' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'action_controller'
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index 3bc83cd75a..ca4b31c827 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -2,7 +2,7 @@ module ActionPack
module Version #:nodoc:
MAJOR = 1
MINOR = 10
- TINY = 1
+ TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index 50ac6d7015..496b3bf461 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,3 +1,8 @@
+*0.9.2* (October 26th, 2005)
+
+* Upgraded to Action Pack 1.10.2 and Active Record 1.12.2
+
+
*0.9.1* (October 19th, 2005)
* Upgraded to Action Pack 1.10.1 and Active Record 1.12.1
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile
index 7e71ccb60f..f0086c5850 100644
--- a/actionwebservice/Rakefile
+++ b/actionwebservice/Rakefile
@@ -63,9 +63,8 @@ spec = Gem::Specification.new do |s|
s.rubyforge_project = "aws"
s.homepage = "http://www.rubyonrails.org"
- s.add_dependency('actionpack', '= 1.10.1' + PKG_BUILD)
- s.add_dependency('activerecord', '= 1.12.1' + PKG_BUILD)
- s.add_dependency('activesupport', '= 1.2.1' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.10.2' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.12.2' + PKG_BUILD)
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionwebservice/lib/action_web_service/version.rb b/actionwebservice/lib/action_web_service/version.rb
index 17f5981177..8ae372ce36 100644
--- a/actionwebservice/lib/action_web_service/version.rb
+++ b/actionwebservice/lib/action_web_service/version.rb
@@ -2,7 +2,7 @@ module ActionWebService
module Version
MAJOR = 0
MINOR = 9
- TINY = 1
+ TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 585f9d602e..def38e20cc 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.12.2* (October 26th, 2005)
* Allow symbols to rename columns when using SQLite adapter. #2531 [kevin.clark@gmail.com]
@@ -12,6 +12,7 @@
* Make all tests runnable on their own. #2521. [Blair Zajac <blair@orcaware.com>]
+
*1.12.1* (October 19th, 2005)
* Always parenthesize :conditions options so they may be safely combined with STI and constraints.
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index c7dc13e51b..f96665c933 100755
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -71,7 +71,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.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.2' + PKG_BUILD)
s.files.delete "test/fixtures/fixture_database.sqlite"
s.files.delete "test/fixtures/fixture_database_2.sqlite"
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb
index 5fc3de2cd2..1f930d6466 100644
--- a/activerecord/lib/active_record/version.rb
+++ b/activerecord/lib/active_record/version.rb
@@ -2,7 +2,7 @@ module ActiveRecord
module Version #:nodoc:
MAJOR = 1
MINOR = 12
- TINY = 1
+ TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 232cd03973..b48837b2f3 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.2.2* (October 26th, 2005)
* Set Logger.silencer = false to disable Logger#silence. Useful for debugging fixtures.
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 010cfa60e6..92db31a4d7 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -2,7 +2,7 @@ module ActiveSupport
module Version #:nodoc:
MAJOR = 1
MINOR = 2
- TINY = 1
+ TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 86e318a8b5..18b42884ab 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.14.2 (RC3)* (October 26th, 2005)
* Constants set in the development/test/production environment file are set in Object
@@ -7,7 +7,7 @@
* Include tasks from vendor/plugins/*/tasks in the Rakefile #2545 [Rick Olson]
-*0.14.1* (October 19th, 2005)
+*0.14.1 (RC2)* (October 19th, 2005)
* Don't clean RAILS_ROOT on windows
@@ -16,7 +16,7 @@
* Upgraded to Active Record 1.12.1 and Action Pack 1.10.1
-*0.14.0* (October 16th, 2005)
+*0.14.0 (RC1)* (October 16th, 2005)
* Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Luetke]
diff --git a/railties/Rakefile b/railties/Rakefile
index c3c6033736..53b965578f 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -273,11 +273,11 @@ spec = Gem::Specification.new do |s|
EOF
s.add_dependency('rake', '>= 0.6.2')
- s.add_dependency('activesupport', '= 1.2.1' + 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.1' + PKG_BUILD)
- s.add_dependency('actionwebservice', '= 0.9.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 1.2.2' + PKG_BUILD)
+ s.add_dependency('activerecord', '= 1.12.2' + PKG_BUILD)
+ s.add_dependency('actionpack', '= 1.10.2' + PKG_BUILD)
+ s.add_dependency('actionmailer', '= 1.1.2' + PKG_BUILD)
+ s.add_dependency('actionwebservice', '= 0.9.2' + PKG_BUILD)
s.rdoc_options << '--exclude' << '.'
s.has_rdoc = false
diff --git a/railties/lib/rails_version.rb b/railties/lib/rails_version.rb
index 03e4c10ef1..19f907258c 100644
--- a/railties/lib/rails_version.rb
+++ b/railties/lib/rails_version.rb
@@ -2,7 +2,7 @@ module Rails
module Version #:nodoc:
MAJOR = 0
MINOR = 14
- TINY = 1
+ TINY = 2
STRING = [MAJOR, MINOR, TINY].join('.')
end