Skip to content

Commit

Permalink
Bump version number to 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
haukex committed Jan 22, 2023
1 parent dcc9d2d commit 854f206
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WriteMakefile(
provides => {
'File::Replace' => {
file => 'lib/File/Replace.pm',
version => '0.16',
version => '0.18',
},
},
resources => {
Expand All @@ -33,7 +33,7 @@ WriteMakefile(
recommends => { # "strongly encouraged and should be satisfied except in resource constrained environments"
},
suggests => { # "optional, but are suggested for enhanced operation"
'File::Replace::Fancy' => '0.16',
'File::Replace::Fancy' => '0.18',
},
},
},
Expand All @@ -58,7 +58,7 @@ WriteMakefile(
},
TEST_REQUIRES => {
# CPAN
'Tie::Handle::Base' => '0.16',
'Tie::Handle::Base' => '0.18',
# Perl core modules
'Encode' => 0,
'Test::More' => '1.302096',
Expand Down
2 changes: 1 addition & 1 deletion lib/File/Replace.pm
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ BEGIN {

## no critic (RequireArgUnpacking)

our $VERSION = '0.16';
our $VERSION = '0.18';

our @EXPORT_OK = qw/ replace replace2 replace3 inplace /;
our @CARP_NOT = qw/ File::Replace::SingleHandle File::Replace::DualHandle File::Replace::Inplace /;
Expand Down
4 changes: 2 additions & 2 deletions lib/File/Replace.pod
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ system's documentation and search the Internet for "atomic rename" for more
details. This module's job is to perform the C<rename>, and it can make
B<no guarantees> as to whether it will be atomic or not.

=head2 Notice
=head2 Important Notice

As of version 0.16, the distribution of this module has been split into
several distributions: See the documentation of L</replace>,
L</replace2>, and L</inplace> for details.

=head2 Version

This documentation describes version 0.16 of this module.
This documentation describes version 0.18 of this module.

=head1 Constructors and Overview

Expand Down
2 changes: 1 addition & 1 deletion t/00_smoke.t
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ use File_Replace_Testlib;
BEGIN {
use_ok 'File::Replace' or BAIL_OUT("failed to use File::Replace");
}
is $File::Replace::VERSION, '0.16', 'File::Replace version matches tests';
is $File::Replace::VERSION, '0.18', 'File::Replace version matches tests';

$File::Replace::DISABLE_CHMOD and diag "\n",
"it appears a simple chmod failed on your system,\n",
Expand Down

0 comments on commit 854f206

Please sign in to comment.