Skip to content

Commit

Permalink
Fix error in import in t/GZT.pm; version to 0.02
Browse files Browse the repository at this point in the history
  • Loading branch information
benkasminbullock committed Jul 27, 2023
1 parent 0dbafd1 commit 676163d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for Perl module Gzip::Zopfli

0.02 2023-07-27

- Fixed error in test code which shows up for Perl 39.1

0.01 2021-03-01

- Initial version
Expand Down
7 changes: 5 additions & 2 deletions lib/Gzip/Zopfli.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ use Carp;
use utf8;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw/zopfli_compress zopfli_compress_file/;
our @EXPORT_OK = qw/
zopfli_compress
zopfli_compress_file
/;
our %EXPORT_TAGS = (
all => \@EXPORT_OK,
);
our $VERSION = '0.01';
our $VERSION = '0.02';
require XSLoader;
XSLoader::load ('Gzip::Zopfli', $VERSION);

Expand Down
2 changes: 1 addition & 1 deletion t/GZT.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sub import
utf8->import ();
warnings->import ();
Test::More->import ();
Zopfli::Compress->import (':all');
Gzip::Zopfli->import (':all');
GZT->export_to_level (1);
}

Expand Down

0 comments on commit 676163d

Please sign in to comment.