diff --git a/RELEASE.md b/RELEASE.md index a307fde0c..6a6354e93 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,19 @@ # Release Notes +## 1.11.2 + +### External changes + +* Fix regression introduced in v1.10.0 that meant `Object#inspect` was called unnecessarily (368abd98) +* Warn when mock object receives invocations in another test - thanks to @nitishr (#442) +* Avoid rubocop comments appearing in YARD-generated docs (d8019eed) + +### Internal changes + +* Replace `StubbedMethod#original_method` & `#original_visibility` attribute reader methods with instance variables - thanks to @nitishr (d917f332) +* Set up `MochaExampleTest` & `StubbaExampleTest` as acceptance tests - thanks to @nitishr (4881cc58) +* Delete unused `PrettyParameters` class - thanks to @nitishr (314ea922) + ## 1.11.1 ### External changes diff --git a/lib/mocha/version.rb b/lib/mocha/version.rb index 6f933d865..43d7d20eb 100644 --- a/lib/mocha/version.rb +++ b/lib/mocha/version.rb @@ -1,3 +1,3 @@ module Mocha - VERSION = '1.11.1'.freeze + VERSION = '1.11.2'.freeze end