Skip to content

Commit

Permalink
Release engineering for 3.00
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed Mar 25, 2023
1 parent 2d47379 commit dcf41a3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGES
@@ -1,3 +1,11 @@
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
- Fix pod typo 'Archive::Tar::Files'
- Update links under SEE ALSO
- Skip symlink tests on Windows/msys2
- Support extraction of large files

2.40 27/07/2021 (KHW && ATOOMIC)
- Generalize for EBCDIC
- Update GitHub workflow with deprecated add-path
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -27,6 +27,7 @@ t/src/long/bar.tar
t/src/long/foo.tbz
t/src/long/foo.tgz
t/src/long/foo.txz
t/src/long/prefix-directory-concat.tar
t/src/short/b
t/src/short/bar.tar
t/src/short/foo.tbz
Expand Down
4 changes: 2 additions & 2 deletions 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 = "2.40";
$VERSION = "3.00";
$CHOWN = 1;
$CHMOD = 1;
$SAME_PERMISSIONS = $> == 0 ? 1 : 0;
Expand Down Expand Up @@ -2173,7 +2173,7 @@ numbers. Added for compatibility with C<busybox> implementations.
It won't work for terminal, pipe or sockets or every non seekable source.
=head $Archive::Tar::EXTRACT_BLOCK_SIZE
=head2 $Archive::Tar::EXTRACT_BLOCK_SIZE
This variable holds an integer with the block size that should be used when
writing files during extraction. It defaults to 1 GiB. Please note that this
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 = '2.40';
$VERSION = '3.00';
@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 = '2.40';
$VERSION = '3.00';

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

Expand Down

0 comments on commit dcf41a3

Please sign in to comment.