diff --git a/Changes b/Changes index 2ab1099..77afd53 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,10 @@ -## Unreleased +## 0.185.3 — 2026-06-15 ## What's Changed -* fix(GH #93): don't require Moose when mocking a Moo class — `_meta_for` no longer triggers Moo's lazy Moose metaclass inflation +* Fix/93 moo meta no moose by @geofffranks in https://github.com/geofffranks/test-mockmodule/pull/94 + + +**Full Changelog**: https://github.com/geofffranks/test-mockmodule/compare/0.185.2...0.185.3 ## 0.185.2 — 2026-05-29 diff --git a/lib/Test/MockModule.pm b/lib/Test/MockModule.pm index 65f99bd..89679fa 100644 --- a/lib/Test/MockModule.pm +++ b/lib/Test/MockModule.pm @@ -6,7 +6,7 @@ use Scalar::Util qw/reftype refaddr weaken/; use Carp; use SUPER; # This is now auto-updated at release time by the github action -$VERSION = '0.185.2'; +$VERSION = '0.185.3'; our $GLOBAL_STRICT_MODE;