diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d818fe..ffa986d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ [Full Changelog](http://github.com/myronmarston/vcr/compare/v2.2.2...master) +Bug Fixes: + +* Fix FakeWeb library hook so that it properly handles the case where + multiple requests are made using the same Net::HTTP request object. + Previously, a `NoMethodError` was raised. Thanks to [Jacob + Green](https://github.com/Jacobkg) for helping to troubleshoot + this bug! + ## 2.2.2 (June 15, 2012) [Full Changelog](http://github.com/myronmarston/vcr/compare/v2.2.1...v2.2.2) diff --git a/lib/vcr/version.rb b/lib/vcr/version.rb index 1c72641c..695cd229 100644 --- a/lib/vcr/version.rb +++ b/lib/vcr/version.rb @@ -10,7 +10,7 @@ module VCR # * `parts` [Array] List of the version parts. def version @version ||= begin - string = '2.2.2' + string = '2.2.3' def string.parts split('.').map { |p| p.to_i }