aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-12-06 18:12:48 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-12-06 18:12:48 +0000
commit729741a3fa91fb92a60795a3c9c3e3928723023c (patch)
tree82dcd9f67797eade66c20417cb85c7f09af61d7d /activesupport
parente16ecaf84c05b054a8ec3b776b3223880edda3d4 (diff)
downloadrails-729741a3fa91fb92a60795a3c9c3e3928723023c.tar.gz
rails-729741a3fa91fb92a60795a3c9c3e3928723023c.tar.bz2
rails-729741a3fa91fb92a60795a3c9c3e3928723023c.zip
Preparing for release shortly
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8321 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG5
-rw-r--r--activesupport/lib/active_support/version.rb6
2 files changed, 4 insertions, 7 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 89fd5b156a..7c08919755 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,4 +1,4 @@
-*2.0.0 [RC2]* (November 28th, 2007)
+*2.0.0* (December 6th, 2007)
* Added Array#from and Array#to that behaves just from String#from and String#to [DHH]
@@ -63,9 +63,6 @@
* Fixed Date#xmlschema for dates outside the range of what can be created with Time #9744 [Geoff Buesing]
-
-*2.0.0 [Preview Release]* (September 29th, 2007)
-
* Fixed that La Paz was included in -25200 and -14400 offsets when it should only be in -14400 #9735 [bermi]
* Fixed JSON encoding to use quoted keys according to the JSON standard #8762 [choonkat/chuyeow]
diff --git a/activesupport/lib/active_support/version.rb b/activesupport/lib/active_support/version.rb
index 008b920714..d44e7cfdfa 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 = 99
- TINY = 1
+ MAJOR = 2
+ MINOR = 0
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end