Skip to content

Commit

Permalink
Update changelog and bump to 0.036 for release to CPAN
Browse files Browse the repository at this point in the history
  • Loading branch information
toddr committed Jul 26, 2023
1 parent d68311b commit e0ea6c7
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Test-MockFile

0.036 7/26/2023
- GH #181 - Detect incorrect usage of add_strict_rule_for_command

0.035 11/30/2022
- GH #180 - Prevent open() and sysopen() from opening GLOB(..)-like paths.

Expand Down
4 changes: 2 additions & 2 deletions lib/Test/MockFile.pm
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ files without touching the file system.
=head1 VERSION
Version 0.035
Version 0.036
=cut

our $VERSION = '0.035';
our $VERSION = '0.036';

our %files_being_mocked;

Expand Down
4 changes: 2 additions & 2 deletions lib/Test/MockFile/DirHandle.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ package Test::MockFile::DirHandle;
use strict;
use warnings;

our $VERSION = '0.035';
our $VERSION = '0.036';

=head1 NAME
Expand All @@ -19,7 +19,7 @@ L<Test::MockFile> to give out for opendir calls.
=head1 VERSION
Version 0.035
Version 0.036
=cut

Expand Down
4 changes: 2 additions & 2 deletions lib/Test/MockFile/FileHandle.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use warnings;
use Errno qw/EBADF/;
use Scalar::Util ();

our $VERSION = '0.035';
our $VERSION = '0.036';

my $files_being_mocked;
{
Expand All @@ -27,7 +27,7 @@ tie to on B<open> or B<sysopen>.
=head1 VERSION
Version 0.035
Version 0.036
=cut

Expand Down
2 changes: 1 addition & 1 deletion lib/Test/MockFile/Plugin.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use warnings;
use Carp qw(croak);
require Test::MockFile; # load Test::MockFile without setting the strict mode

our $VERSION = '0.035';
our $VERSION = '0.036';

sub new {
my ( $class, %opts ) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/MockFile/Plugin/FileTemp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Test::MockModule qw{strict};

use Carp qw(croak);

our $VERSION = '0.035';
our $VERSION = '0.036';

sub register {
my ($self) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Test/MockFile/Plugins.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Test::MockFile::Plugins;
use strict;
use warnings;

our $VERSION = '0.035';
our $VERSION = '0.036';

our @NAMESPACES = (q[Test::MockFile::Plugin]);

Expand Down

0 comments on commit e0ea6c7

Please sign in to comment.