diff --git a/Changes b/Changes index b14b931..12e3f4a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Test::MockModule +v0.12 + - Added the `noop()` function to make mocking noops easier. Thanks for the PR, + Ali Zia! + +v0.11 2016-10-27 + - Various housekeeping, testing and minor fixes, courtesy of Paul Cochrane, thanks! + v0.10 2015-05-30 - Updated docs for mocking when using exported functions diff --git a/LICENSE b/LICENSE index e39d790..5575488 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -This software is Copyright (c) 2015 by Current Maintainer: Geoff Franks & Original Author: Simon Flack . +This software is Copyright (c) 2017 by Current Maintainer: Geoff Franks & Original Author: Simon Flack . This is free software, licensed under: diff --git a/lib/Test/MockModule.pm b/lib/Test/MockModule.pm index 5a7425c..baaebff 100644 --- a/lib/Test/MockModule.pm +++ b/lib/Test/MockModule.pm @@ -4,7 +4,7 @@ use vars qw/$VERSION/; use Scalar::Util qw/reftype weaken/; use Carp; use SUPER; -$VERSION = '0.11'; +$VERSION = '0.12'; my %mocked; sub new {