aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-10-16 22:15:03 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-10-16 22:15:03 +0000
commitf4aaa26eb30f040925c0f982387295d454fde606 (patch)
tree14f5259b60c036a91a5081981448aed45d761f0c /activesupport
parent8d9ee72a78d4f820a6827562d46faf9a8b091267 (diff)
downloadrails-f4aaa26eb30f040925c0f982387295d454fde606.tar.gz
rails-f4aaa26eb30f040925c0f982387295d454fde606.tar.bz2
rails-f4aaa26eb30f040925c0f982387295d454fde606.zip
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
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/version.rb4
2 files changed, 3 insertions, 3 deletions
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