diff options
Diffstat (limited to 'activeresource')
-rw-r--r-- | activeresource/CHANGELOG | 3 | ||||
-rw-r--r-- | activeresource/Rakefile | 2 | ||||
-rw-r--r-- | activeresource/lib/active_resource/version.rb | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/activeresource/CHANGELOG b/activeresource/CHANGELOG index 7527424070..a84dfd6ed7 100644 --- a/activeresource/CHANGELOG +++ b/activeresource/CHANGELOG @@ -1,7 +1,10 @@ +*2.0.0 [RC2]* (November 28th, 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: diff --git a/activeresource/Rakefile b/activeresource/Rakefile index 5a3f8c9768..88669141d8 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.0' + PKG_BUILD) + s.add_dependency('activesupport', '= 1.99.1' + 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 5431ab0e13..ca8fcdb598 100644 --- a/activeresource/lib/active_resource/version.rb +++ b/activeresource/lib/active_resource/version.rb @@ -2,7 +2,7 @@ module ActiveResource module VERSION #:nodoc: MAJOR = 1 MINOR = 99 - TINY = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end |