aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG5
-rw-r--r--actionpack/Rakefile2
-rw-r--r--actionpack/lib/action_pack/version.rb6
3 files changed, 5 insertions, 8 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 9d215e9d3d..f1e2aa455a 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,4 +1,4 @@
-*SVN*
+*2.0.0* (December 6th, 2007)
* Fixed send_file/binary_content for testing #8044 [tolsen]
@@ -14,9 +14,6 @@
* Fixed that verification violations with no specified action didn't halt the chain (now they do with a 400 Bad Request) [DHH]
-
-*2.0.0 [RC2]* (November 28th, 2007)
-
* Raise UnknownHttpMethod exception for unknown HTTP methods. Closes #10303 [tarmo]
* Update to Prototype -r8232. [sam]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 9bd8fbe314..c544d47e34 100644
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -76,7 +76,7 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.requirements << 'none'
- s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 2.0.0' + 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 9e62961a80..d63c72f142 100644
--- a/actionpack/lib/action_pack/version.rb
+++ b/actionpack/lib/action_pack/version.rb
@@ -1,8 +1,8 @@
module ActionPack #:nodoc:
module VERSION #:nodoc:
- MAJOR = 1
- MINOR = 99
- TINY = 1
+ MAJOR = 2
+ MINOR = 0
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end