From f4aaa26eb30f040925c0f982387295d454fde606 Mon Sep 17 00:00:00 2001
From: David Heinemeier Hansson <david@loudthinking.com>
Date: Sun, 16 Oct 2005 22:15:03 +0000
Subject: Getting ready for 0.14.0 (1.0.0 Release Candidate 1)

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2660 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
---
 actionmailer/CHANGELOG                             | 2 +-
 actionmailer/lib/action_mailer/version.rb          | 4 ++--
 actionpack/CHANGELOG                               | 2 +-
 actionpack/lib/action_pack/version.rb              | 4 ++--
 actionwebservice/CHANGELOG                         | 3 ++-
 actionwebservice/lib/action_web_service/version.rb | 4 ++--
 activerecord/CHANGELOG                             | 2 +-
 activerecord/lib/active_record/version.rb          | 4 ++--
 activesupport/CHANGELOG                            | 2 +-
 activesupport/lib/active_support/version.rb        | 4 ++--
 railties/CHANGELOG                                 | 2 +-
 railties/lib/rails_version.rb                      | 4 ++--
 12 files changed, 19 insertions(+), 18 deletions(-)

diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index b33d564084..6f6f240ef8 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.1.0* (October 16th, 2005)
 
 * Update and extend documentation (rdoc)
 
diff --git a/actionmailer/lib/action_mailer/version.rb b/actionmailer/lib/action_mailer/version.rb
index 2108ffb282..5b5d98161c 100644
--- a/actionmailer/lib/action_mailer/version.rb
+++ b/actionmailer/lib/action_mailer/version.rb
@@ -1,8 +1,8 @@
 module ActionMailer
   module Version #:nodoc:
     MAJOR = 1
-    MINOR = 0
-    TINY  = 1
+    MINOR = 1
+    TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 698ef00234..1e542046fe 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.10.0* (October 16th, 2005)
 
 * Improve line number detection for template errors [Nicholas Seckar]
 
diff --git a/actionpack/lib/action_pack/version.rb b/actionpack/lib/action_pack/version.rb
index 3242498d35..fd7daa8b97 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -1,8 +1,8 @@
 module ActionPack
   module Version #:nodoc:
     MAJOR = 1
-    MINOR = 9
-    TINY  = 1
+    MINOR = 10
+    TINY  = 0
     
     STRING = [MAJOR, MINOR, TINY].join('.')
   end
diff --git a/actionwebservice/CHANGELOG b/actionwebservice/CHANGELOG
index 1ce43dafe5..51ecf89b77 100644
--- a/actionwebservice/CHANGELOG
+++ b/actionwebservice/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.9.0* (October 16th, 2005)
 
 * Fix invalid XML request generation bug in test_invoke [Ken Barker]
 
@@ -12,6 +12,7 @@
 
 * ActionWebService now always returns UTF-8 responses.
 
+
 *0.8.1* (11 July, 2005)
 
 * Fix scaffolding for Action Pack controller changes
diff --git a/actionwebservice/lib/action_web_service/version.rb b/actionwebservice/lib/action_web_service/version.rb
index 27a0c267ad..4f2f6939db 100644
--- a/actionwebservice/lib/action_web_service/version.rb
+++ b/actionwebservice/lib/action_web_service/version.rb
@@ -1,8 +1,8 @@
 module ActionWebService
   module Version
     MAJOR = 0
-    MINOR = 8
-    TINY  = 1
+    MINOR = 9
+    TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 3a151289db..38ff390a46 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*                                                                                                                   
+*1.12.0* (October 16th, 2005)
 
 * Update/clean up documentation (rdoc)
 
diff --git a/activerecord/lib/active_record/version.rb b/activerecord/lib/active_record/version.rb
index 73493df534..beecbf445f 100644
--- a/activerecord/lib/active_record/version.rb
+++ b/activerecord/lib/active_record/version.rb
@@ -1,8 +1,8 @@
 module ActiveRecord
   module Version #:nodoc:
     MAJOR = 1
-    MINOR = 11
-    TINY  = 1
+    MINOR = 12
+    TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 43ea126aaf..3c1be355ca 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*1.2.0* (October 16th, 2005)
 
 * Update Exception extension to show the first few framework frames in an application trace. [Nicholas Seckar] 
 
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 873a845243..7863412489 100644
--- a/activesupport/lib/active_support/version.rb
+++ b/activesupport/lib/active_support/version.rb
@@ -1,8 +1,8 @@
 module ActiveSupport
   module Version #:nodoc:
     MAJOR = 1
-    MINOR = 1
-    TINY  = 1
+    MINOR = 2
+    TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 9293fc4e71..202aa45a61 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*0.14.0* (October 16th, 2005)
 
 * Moved generator folder from RAILS_ROOT/generators to RAILS_ROOT/lib/generators [Tobias Luetke]
 
diff --git a/railties/lib/rails_version.rb b/railties/lib/rails_version.rb
index cbe47db34f..01d9190521 100644
--- a/railties/lib/rails_version.rb
+++ b/railties/lib/rails_version.rb
@@ -1,8 +1,8 @@
 module Rails
   module Version #:nodoc:
     MAJOR = 0
-    MINOR = 13
-    TINY  = 1
+    MINOR = 14
+    TINY  = 0
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end
-- 
cgit v1.2.3