From 36c2dea1b8ddf1aac0570a9890e8f3f52d3cb9c6 Mon Sep 17 00:00:00 2001 From: Bartosz Blimke Date: Fri, 26 Feb 2021 10:42:01 +0100 Subject: [PATCH] Version 3.12.0 --- CHANGELOG.md | 4 ++++ README.md | 1 + lib/webmock/version.rb | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea21c1d84..4143afc4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +# 3.12.0 + + * Added support for handling custom JSON and XML content types e.g. 'application/vnd.api+json' + # 3.11.3 * Fixed async-http adapter to only considered requests as real if they are real. diff --git a/README.md b/README.md index 415796a42..d0390dae1 100644 --- a/README.md +++ b/README.md @@ -1156,6 +1156,7 @@ People who submitted patches and new features or suggested improvements. Many th * Oleksiy Kovyrin * Matt Larraz * Tony Schneider +* Niklas Hösl For a full list of contributors you can visit the [contributors](https://github.com/bblimke/webmock/contributors) page. diff --git a/lib/webmock/version.rb b/lib/webmock/version.rb index d4ed5c50d..26e4c9dfb 100644 --- a/lib/webmock/version.rb +++ b/lib/webmock/version.rb @@ -1,3 +1,3 @@ module WebMock - VERSION = '3.11.3' unless defined?(::WebMock::VERSION) + VERSION = '3.12.0' unless defined?(::WebMock::VERSION) end