Skip to content

Commit

Permalink
Changes for 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs committed Mar 31, 2019
1 parent 9f06d90 commit 7c4f196
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@


0.2.3 10 March 2019

* Drop support for in-memory zip files.
IO::Blob doesn't allow seekable writing to a blob at the moment.
Can reinstate when IO::Blob gets seek support.

* Drop use of "pack" - use buf8, write-uint16/32 instead

* Add version data to the .pm6 files

* Include 2018.12 in .travis.yml

* More tests

* Set Language encoding bit when filename/comment not 7-bit ascii

0.1.2

* Checkpoint release to CPAN

* Dropped "use v6"
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"perl" : "6.*",
"name" : "Archive::SimpleZip",
"version" : "0.1.2",
"version" : "0.2.3",
"description" : "Write Zip Files.",
"authors" : [ "Paul Marquess <pmqs@cpan.org>" ],
"tags" : [ "archive", "compression" ],
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive/SimpleZip.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

unit module Archive::SimpleZip;
unit module Archive::SimpleZip:ver<0.2.3>:auth<Paul Marquess (pmqs@cpan.org)>;

need Compress::Zlib;
need Compress::Bzip2;
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive/SimpleZip/Headers.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

unit module Archive::SimpleZip::Headers;
unit module Archive::SimpleZip::Headers:ver<0.2.3>:auth<Paul Marquess (pmqs@cpan.org)>;;

# Compression types supported
enum Zip-CM is export (
Expand Down
2 changes: 1 addition & 1 deletion lib/Archive/SimpleZip/Utils.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

unit module Archive::SimpleZip::Utils;
unit module Archive::SimpleZip::Utils:ver<0.2.3>:auth<Paul Marquess (pmqs@cpan.org)>;;

need Compress::Zlib::Raw;
use NativeCall;
Expand Down

0 comments on commit 7c4f196

Please sign in to comment.