Skip to content

Commit

Permalink
Release engineering for 3.02
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed Apr 12, 2023
1 parent 935908b commit cbcef34
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES
@@ -1,3 +1,8 @@
3.02 13/04/2023 (Manfred Stock)
- Test block sizes up to (2**31 - 1) bytes only (fix for 32bit perls)
- Don't match on message from exception in symlink test
- Improve formatting of $Archive::Tar::RESOLVE_SYMLINK documentation

3.00 25/03/2023 (Chris Lindee, Reini Urban, Paul Bolle, Michiel Beijen, Paulo Custodio, Michael R. Davis && Manfred Stock)
- RT #119949: Correctly concat prefix on directories
- enabled t/90_symlink.t for all platforms with symlinks
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive/Tar.pm
Expand Up @@ -32,7 +32,7 @@ use vars qw[$DEBUG $error $VERSION $WARN $FOLLOW_SYMLINK $CHOWN $CHMOD
$DEBUG = 0;
$WARN = 1;
$FOLLOW_SYMLINK = 0;
$VERSION = "3.00";
$VERSION = "3.02";
$CHOWN = 1;
$CHMOD = 1;
$SAME_PERMISSIONS = $> == 0 ? 1 : 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive/Tar/Constant.pm
Expand Up @@ -8,7 +8,7 @@ use vars qw[$VERSION @ISA @EXPORT];
BEGIN {
require Exporter;

$VERSION = '3.00';
$VERSION = '3.02';
@ISA = qw[Exporter];

require Time::Local if $^O eq "MacOS";
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive/Tar/File.pm
Expand Up @@ -11,7 +11,7 @@ use Archive::Tar::Constant;

use vars qw[@ISA $VERSION];
#@ISA = qw[Archive::Tar];
$VERSION = '3.00';
$VERSION = '3.02';

### set value to 1 to oct() it during the unpack ###

Expand Down

0 comments on commit cbcef34

Please sign in to comment.