From ca8b80c517148363385445c3cc59b264ff8741e4 Mon Sep 17 00:00:00 2001 From: Jon Rowe Date: Thu, 13 Jun 2024 15:31:25 +0100 Subject: [PATCH] v3.13.1 --- Changelog.md | 9 ++++++--- lib/rspec/expectations/version.rb | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index b4e7e6b3a..e3ce7934d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,10 +1,13 @@ ### Development -[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.13.0...main) +[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.13.1...3-13-maintenance) + +### 3.13.1 / 2024-06-13 +[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.13.0...v3.13.1) Bug Fixes: -* Fix the false positive warning message for negated raise error with a regexp argument. - (Eric Mueller, #1456) +* Fix the "false positive" warning message when using a negated `raise_error` matcher + with a `RegExp` instance. (Eric Mueller, #1456) ### 3.13.0 / 2024-02-04 [Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.12.4...v3.13.0) diff --git a/lib/rspec/expectations/version.rb b/lib/rspec/expectations/version.rb index e6052276a..01f3e649e 100644 --- a/lib/rspec/expectations/version.rb +++ b/lib/rspec/expectations/version.rb @@ -2,7 +2,7 @@ module RSpec module Expectations # @private module Version - STRING = '3.13.0' + STRING = '3.13.1' end end end