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