diff --git a/CHANGELOG.md b/CHANGELOG.md index ffa986d4..6325dd06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ -## In git +## 2.2.4 (July 19, 2012) -[Full Changelog](http://github.com/myronmarston/vcr/compare/v2.2.2...master) +[Full Changelog](http://github.com/myronmarston/vcr/compare/v2.2.3...v2.2.4) + +Bug Fixes: + +* Fix excon so real requests are made with a connection constructed with + same args as the original connection. + +## 2.2.3 (July 9, 2012) + +[Full Changelog](http://github.com/myronmarston/vcr/compare/v2.2.2...v2.2.3) Bug Fixes: diff --git a/lib/vcr/version.rb b/lib/vcr/version.rb index 695cd229..12b98c41 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.3' + string = '2.2.4' def string.parts split('.').map { |p| p.to_i }