From 48cc7c56d377f50393c92ba52aa8667d670e4b6c Mon Sep 17 00:00:00 2001 From: Bartosz Blimke Date: Mon, 12 Oct 2020 14:33:37 +0200 Subject: [PATCH] Version 3.9.2 --- CHANGELOG.md | 8 +++++++- README.md | 1 + lib/webmock/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce2086bb6..dec711c08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ # Changelog +# 3.9.2 + + * Made global stubs thread-safe + + Thanks to [Adam Harwood](https://github.com/adam-harwood) + # 3.9.1 - Fixed support for passing `URI` objects as second argument of `stub_request` + * Fixed support for passing `URI` objects as second argument of `stub_request` Thanks to [Ryan Kerr](https://github.com/leboshi) diff --git a/README.md b/README.md index c09e431bc..56dcac4a4 100644 --- a/README.md +++ b/README.md @@ -1137,6 +1137,7 @@ People who submitted patches and new features or suggested improvements. Many th * Lucas Uyezu * Bruno Sutic * Ryan Kerr +* Adam Harwood 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 430f1e279..3e14d29dc 100644 --- a/lib/webmock/version.rb +++ b/lib/webmock/version.rb @@ -1,3 +1,3 @@ module WebMock - VERSION = '3.9.1' unless defined?(::WebMock::VERSION) + VERSION = '3.9.2' unless defined?(::WebMock::VERSION) end