Skip to content

Commit

Permalink
release v0.171.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CI Bot committed Oct 19, 2019
1 parent 89dc5c0 commit 3c52db1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Revision history for Test::MockModule

v0.171.0
- 89dc5c0 Fixes #25 - mocking core::global no longer fails trying to load the module - Geoff Franks
- 9bb081a update ci for fewer infinite loops - Geoff Franks
- 289d014 Update release notes for all the newly merged PRs - Geoff Franks
- fef9e74 Allow chaining of new with mock, redefine, define - Nicolas Rochelemagne
- e136131 Prevent redefine() from triggering DESTROY. - Felipe Gasper
- 311f6b4 Adjust Travis CI configuration to use travis-perl.github.io - Nicolas Rochelemagne
- 2bed3e2 Add strict mode to ban the use of noop and mock. - Todd Rinaldo
- 0298d8d Provide define method so the mock method is unneeded in tests. - Todd Rinaldo

v0.171.0
- allow chaining of new with mock, redefine, define
- redefine() no longer triggers errors if the object being mocked is not a hashref
Expand Down
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This software is copyright (c) 2018 by Current Maintainer: Geoff Franks <[email protected]> & Original Author: Simon Flack <simonflk _AT_ cpan.org>.
This software is copyright (c) 2019 by Current Maintainer: Geoff Franks <[email protected]> & Original Author: Simon Flack <simonflk _AT_ cpan.org>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
Expand All @@ -12,7 +12,7 @@ b) the "Artistic License"

--- The GNU General Public License, Version 1, February 1989 ---

This software is Copyright (c) 2018 by Current Maintainer: Geoff Franks <[email protected]> & Original Author: Simon Flack <simonflk _AT_ cpan.org>.
This software is Copyright (c) 2019 by Current Maintainer: Geoff Franks <[email protected]> & Original Author: Simon Flack <simonflk _AT_ cpan.org>.

This is free software, licensed under:

Expand Down Expand Up @@ -272,7 +272,7 @@ That's all there is to it!

--- The Artistic License 1.0 ---

This software is Copyright (c) 2018 by Current Maintainer: Geoff Franks <[email protected]> & Original Author: Simon Flack <simonflk _AT_ cpan.org>.
This software is Copyright (c) 2019 by Current Maintainer: Geoff Franks <[email protected]> & Original Author: Simon Flack <simonflk _AT_ cpan.org>.

This is free software, licensed under:

Expand Down
2 changes: 1 addition & 1 deletion lib/Test/MockModule.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use vars qw/$VERSION/;
use Scalar::Util qw/reftype weaken/;
use Carp;
use SUPER;
$VERSION = '0.170.0';
$VERSION = '0.171.0';

our $STRICT_MODE;

Expand Down

0 comments on commit 3c52db1

Please sign in to comment.