aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource
diff options
context:
space:
mode:
Diffstat (limited to 'activeresource')
-rw-r--r--activeresource/CHANGELOG5
-rw-r--r--activeresource/Rakefile2
-rw-r--r--activeresource/lib/active_resource/version.rb6
3 files changed, 5 insertions, 8 deletions
diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG
index a84dfd6ed7..5919931b29 100644
--- a/activeresource/CHANGELOG
+++ b/activeresource/CHANGELOG
@@ -1,12 +1,9 @@
-*2.0.0 [RC2]* (November 28th, 2007)
+*2.0.0* (December 6th, 2007)
* Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou]
* Update XML documentation examples to include explicit type attributes. Closes #9754 [hasmanyjosh]
-
-*2.0.0 [Preview Release]* (September 29th, 2007)
-
* Added one-off declarations of mock behavior [DHH]. Example:
Before:
diff --git a/activeresource/Rakefile b/activeresource/Rakefile
index 88669141d8..f643593732 100644
--- a/activeresource/Rakefile
+++ b/activeresource/Rakefile
@@ -62,7 +62,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.99.1' + PKG_BUILD)
+ s.add_dependency('activesupport', '= 2.0.0' + PKG_BUILD)
s.require_path = 'lib'
s.autorequire = 'active_resource'
diff --git a/activeresource/lib/active_resource/version.rb b/activeresource/lib/active_resource/version.rb
index ca8fcdb598..79ea4f2539 100644
--- a/activeresource/lib/active_resource/version.rb
+++ b/activeresource/lib/active_resource/version.rb
@@ -1,8 +1,8 @@
module ActiveResource
module VERSION #:nodoc:
- MAJOR = 1
- MINOR = 99
- TINY = 1
+ MAJOR = 2
+ MINOR = 0
+ TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.')
end