compress 2.021
[p5sagit/p5-mst-13.2.git] / ext / IO-Compress / lib / IO / Uncompress / AnyInflate.pm
index 2ae8876..e8ffc5c 100644 (file)
@@ -6,22 +6,22 @@ use strict;
 use warnings;
 use bytes;
 
-use IO::Compress::Base::Common  2.020 qw(createSelfTiedObject);
+use IO::Compress::Base::Common  2.021 qw(createSelfTiedObject);
 
-use IO::Uncompress::Adapter::Inflate  2.020 ();
+use IO::Uncompress::Adapter::Inflate  2.021 ();
 
 
-use IO::Uncompress::Base  2.020 ;
-use IO::Uncompress::Gunzip  2.020 ;
-use IO::Uncompress::Inflate  2.020 ;
-use IO::Uncompress::RawInflate  2.020 ;
-use IO::Uncompress::Unzip  2.020 ;
+use IO::Uncompress::Base  2.021 ;
+use IO::Uncompress::Gunzip  2.021 ;
+use IO::Uncompress::Inflate  2.021 ;
+use IO::Uncompress::RawInflate  2.021 ;
+use IO::Uncompress::Unzip  2.021 ;
 
 require Exporter ;
 
 our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError);
 
-$VERSION = '2.020';
+$VERSION = '2.021';
 $AnyInflateError = '';
 
 @ISA = qw( Exporter IO::Uncompress::Base );
@@ -48,7 +48,7 @@ sub anyinflate
 
 sub getExtraParams
 {
-    use IO::Compress::Base::Common  2.020 qw(:Parse);
+    use IO::Compress::Base::Common  2.021 qw(:Parse);
     return ( 'RawInflate' => [1, 1, Parse_boolean,  0] ) ;
 }
 
@@ -378,7 +378,7 @@ C<InputLength> option.
 =head2 Examples
 
 To read the contents of the file C<file1.txt.Compressed> and write the
-compressed data to the file C<file1.txt>.
+uncompressed data to the file C<file1.txt>.
 
     use strict ;
     use warnings ;