From 6b422e4a7eeb81197ef23e0ee79de8bc9118c88a Mon Sep 17 00:00:00 2001 From: Bartosz Blimke Date: Wed, 17 Aug 2011 19:06:57 +0200 Subject: [PATCH] Version 1.7.3 --- CHANGELOG.md | 6 ++++++ lib/webmock/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 36215e356..e2b987e61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.7.3 + +* Added `Get`, `Post`, `Delete`, `Put`, `Head`, `Option` constants to replaced `Net::HTTP` to make it possible to marshal objects with these constants assigned to properties. This fixed problem with `tvdb_party` gem which serializes HTTParty responses. + + Thanks to [Klaus Hartl](https://github.com/carhartl) for reporting this issue. + ## 1.7.2 * Redefined `const_get` and `constants` methods on the replaced `Net::HTTP` to return same values as original `Net::HTTP` diff --git a/lib/webmock/version.rb b/lib/webmock/version.rb index 787123344..34ca84b23 100644 --- a/lib/webmock/version.rb +++ b/lib/webmock/version.rb @@ -1,3 +1,3 @@ module WebMock - VERSION = '1.7.2' unless defined?(::WebMock::VERSION) + VERSION = '1.7.3' unless defined?(::WebMock::VERSION) end