summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorPaul Marquess <paul.marquess@btinternet.com>2006-11-01 10:34:52 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-11-01 12:39:39 +0000
commit63ad731da6e7c95184317616677400634991d7a4 (patch)
tree1bc999207526d8aa939a555833334b6e3dbdf241 /ext
parent581d1b5b4d97adf808d2c062f6d09ceb66f049ae (diff)
downloadperl-63ad731da6e7c95184317616677400634991d7a4.tar.gz
Remove beta status from compression modules
From: "Paul Marquess" <paul.marquess@ntlworld.com> Message-ID: <02b301c6fda1$5d799950$4e3c140a@myopwv.com> p4raw-id: //depot/perl@29179
Diffstat (limited to 'ext')
-rw-r--r--ext/Compress/IO/Base/Changes4
-rw-r--r--ext/Compress/IO/Base/README10
-rw-r--r--ext/Compress/IO/Base/lib/IO/Compress/Base.pm2
-rw-r--r--ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm2
-rw-r--r--ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm20
-rw-r--r--ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm2
-rw-r--r--ext/Compress/IO/Zlib/Changes4
-rw-r--r--ext/Compress/IO/Zlib/README10
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm2
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm20
-rw-r--r--ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm20
-rw-r--r--ext/Compress/Raw/Zlib/Changes4
-rw-r--r--ext/Compress/Raw/Zlib/README10
-rw-r--r--ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm2
-rw-r--r--ext/Compress/Zlib/Changes4
-rw-r--r--ext/Compress/Zlib/README10
-rw-r--r--ext/Compress/Zlib/lib/Compress/Zlib.pm2
31 files changed, 47 insertions, 235 deletions
diff --git a/ext/Compress/IO/Base/Changes b/ext/Compress/IO/Base/Changes
index 86d751f599..0f022c5695 100644
--- a/ext/Compress/IO/Base/Changes
+++ b/ext/Compress/IO/Base/Changes
@@ -1,6 +1,10 @@
CHANGES
-------
+ 2.001 1 November 2006
+
+ * Remove beta status.
+
2.000_14 26 October 2006
* IO::Uncompress::Base
diff --git a/ext/Compress/IO/Base/README b/ext/Compress/IO/Base/README
index 66f5105669..a290edd65f 100644
--- a/ext/Compress/IO/Base/README
+++ b/ext/Compress/IO/Base/README
@@ -1,9 +1,9 @@
IO::Compress::Base
- Version 2.000_14
+ Version 2.001
- 26th October 2006
+ 1st November 2006
Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
@@ -13,12 +13,6 @@
- WARNING
- THIS IS BETA CODE.
-
- DO NOT use in production code.
- Please report any problems.
-
DESCRIPTION
-----------
diff --git a/ext/Compress/IO/Base/lib/IO/Compress/Base.pm b/ext/Compress/IO/Base/lib/IO/Compress/Base.pm
index 212b1fac0f..9b087b431d 100644
--- a/ext/Compress/IO/Base/lib/IO/Compress/Base.pm
+++ b/ext/Compress/IO/Base/lib/IO/Compress/Base.pm
@@ -20,7 +20,7 @@ use bytes;
our (@ISA, $VERSION, $got_encode);
#@ISA = qw(Exporter IO::File);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
#Can't locate object method "SWASHNEW" via package "utf8" (perhaps you forgot to load "utf8"?) at .../ext/Compress-Zlib/Gzip/blib/lib/Compress/Zlib/Common.pm line 16.
diff --git a/ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm b/ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
index 307af4a04f..fe4520218c 100644
--- a/ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
+++ b/ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
@@ -11,7 +11,7 @@ use File::GlobMapper;
require Exporter;
our ($VERSION, @ISA, @EXPORT, %EXPORT_TAGS);
@ISA = qw(Exporter);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
@EXPORT = qw( isaFilehandle isaFilename whatIsInput whatIsOutput
isaFileGlobString cleanFileGlobString oneTarget
diff --git a/ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm b/ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
index 3ed346af8a..2e231ab2a9 100644
--- a/ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
+++ b/ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
@@ -13,7 +13,7 @@ require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyUncompressError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$AnyUncompressError = '';
@ISA = qw( Exporter IO::Uncompress::Base );
@@ -239,24 +239,6 @@ IO::Uncompress::AnyUncompress - Uncompress gzip, zip, bzip2 or lzop file/buffer
=head1 DESCRIPTION
-
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
This module provides a Perl interface that allows the reading of
files/buffers that have been compressed with a variety of compression
libraries.
diff --git a/ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm b/ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
index 0073291205..0442f4156c 100644
--- a/ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
+++ b/ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
@@ -10,7 +10,7 @@ our (@ISA, $VERSION, @EXPORT_OK, %EXPORT_TAGS);
@ISA = qw(Exporter );
-$VERSION = '2.000_14';
+$VERSION = '2.001';
use constant G_EOF => 0 ;
use constant G_ERR => -1 ;
diff --git a/ext/Compress/IO/Zlib/Changes b/ext/Compress/IO/Zlib/Changes
index b73b591362..bc837f8ae9 100644
--- a/ext/Compress/IO/Zlib/Changes
+++ b/ext/Compress/IO/Zlib/Changes
@@ -1,6 +1,10 @@
CHANGES
-------
+ 2.001 1 November 2006
+
+ * Remove beta status.
+
2.000_14 26 October 2006
* IO::Uncompress::Deflate
diff --git a/ext/Compress/IO/Zlib/README b/ext/Compress/IO/Zlib/README
index 0dd5175fbd..4ca50328ad 100644
--- a/ext/Compress/IO/Zlib/README
+++ b/ext/Compress/IO/Zlib/README
@@ -1,9 +1,9 @@
IO::Compress::Zlib
- Version 2.000_14
+ Version 2.001
- 26th October 2006
+ 1st November 2006
Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
@@ -13,12 +13,6 @@
- WARNING
- THIS IS BETA CODE.
-
- DO NOT use in production code.
- Please report any problems.
-
DESCRIPTION
-----------
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
index e72810011b..a8e4e9cafb 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
@@ -9,7 +9,7 @@ use IO::Compress::Base::Common qw(:Status);
use Compress::Raw::Zlib qw(Z_OK Z_FINISH MAX_WBITS) ;
our ($VERSION);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
sub mkCompObject
{
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
index 9c3f1e7c00..56876bc120 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
@@ -7,7 +7,7 @@ use bytes;
use IO::Compress::Base::Common qw(:Status);
our ($VERSION);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
sub mkCompObject
{
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
index d304fbd02a..c964c1d397 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
@@ -15,7 +15,7 @@ use IO::Compress::Base::Common qw(createSelfTiedObject);
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $DeflateError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$DeflateError = '';
@ISA = qw(Exporter IO::Compress::RawDeflate);
@@ -219,24 +219,6 @@ IO::Compress::Deflate - Write RFC 1950 files/buffers
=head1 DESCRIPTION
-
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
This module provides a Perl interface that allows writing compressed
data to files or buffer as defined in RFC 1950.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
index 5d171948d8..7ec0d76362 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
@@ -27,7 +27,7 @@ require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $GzipError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$GzipError = '' ;
@ISA = qw(Exporter IO::Compress::RawDeflate);
@@ -327,24 +327,6 @@ IO::Compress::Gzip - Write RFC 1952 files/buffers
=head1 DESCRIPTION
-
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
This module provides a Perl interface that allows writing compressed
data to files or buffer as defined in RFC 1952.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
index 3598b1056d..f2f044b01c 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
@@ -9,7 +9,7 @@ require Exporter;
our ($VERSION, @ISA, @EXPORT, %GZIP_OS_Names);
our ($GZIP_FNAME_INVALID_CHAR_RE, $GZIP_FCOMMENT_INVALID_CHAR_RE);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
@ISA = qw(Exporter);
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
index 0a916e2e0e..762080aaae 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
@@ -16,7 +16,7 @@ require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %DEFLATE_CONSTANTS, %EXPORT_TAGS, $RawDeflateError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$RawDeflateError = '';
@ISA = qw(Exporter IO::Compress::Base);
@@ -302,24 +302,6 @@ IO::Compress::RawDeflate - Write RFC 1951 files/buffers
=head1 DESCRIPTION
-
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
This module provides a Perl interface that allows writing compressed
data to files or buffer as defined in RFC 1951.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
index 908a4c33ea..c34589f110 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
@@ -27,7 +27,7 @@ require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $ZipError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$ZipError = '';
@ISA = qw(Exporter IO::Compress::RawDeflate);
@@ -619,24 +619,6 @@ IO::Compress::Zip - Write zip files/buffers
=head1 DESCRIPTION
-
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
This module provides a Perl interface that allows writing zip
compressed data to files or buffer.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
index 6e83a4ad8f..a8218b5d89 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
@@ -7,7 +7,7 @@ require Exporter;
our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
@ISA = qw(Exporter);
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
index 96bced6e20..f829c4707a 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
@@ -9,7 +9,7 @@ require Exporter;
our ($VERSION, @ISA, @EXPORT);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
@ISA = qw(Exporter);
diff --git a/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm b/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
index 4640829216..0341cdfd97 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
@@ -8,7 +8,7 @@ use bytes;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
use IO::Compress::Gzip::Constants;
diff --git a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
index 516e838fbc..ee99c00938 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
@@ -8,7 +8,7 @@ use IO::Compress::Base::Common qw(:Status);
our ($VERSION);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
use Compress::Raw::Zlib ();
diff --git a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
index e313360d4e..e9fa4a0ed7 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
@@ -8,7 +8,7 @@ use IO::Compress::Base::Common qw(:Status);
use Compress::Raw::Zlib qw(Z_OK Z_DATA_ERROR Z_STREAM_END Z_FINISH MAX_WBITS);
our ($VERSION);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
diff --git a/ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm b/ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
index 915cd5f18b..66c7d0238e 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
@@ -21,7 +21,7 @@ require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $AnyInflateError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$AnyInflateError = '';
@ISA = qw( Exporter IO::Uncompress::Base );
@@ -180,24 +180,6 @@ IO::Uncompress::AnyInflate - Uncompress zlib-based (zip, gzip) file/buffer
=head1 DESCRIPTION
-
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
This module provides a Perl interface that allows the reading of
files/buffers that have been compressed in a number of formats that use the
zlib compression library.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
index e465bcb9a8..d2f5da8fb9 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
@@ -28,7 +28,7 @@ Exporter::export_ok_tags('all');
$GunzipError = '';
-$VERSION = '2.000_14';
+$VERSION = '2.001';
sub new
{
@@ -334,24 +334,6 @@ IO::Uncompress::Gunzip - Read RFC 1952 files/buffers
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
-
This module provides a Perl interface that allows the reading of
files/buffers that conform to RFC 1952.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
index 2ec0a49d57..b41f5f9621 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
@@ -13,7 +13,7 @@ use IO::Uncompress::RawInflate ;
require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $InflateError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$InflateError = '';
@ISA = qw( Exporter IO::Uncompress::RawInflate );
@@ -255,24 +255,6 @@ IO::Uncompress::Inflate - Read RFC 1950 files/buffers
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
-
This module provides a Perl interface that allows the reading of
files/buffers that conform to RFC 1950.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm b/ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
index 53271aba01..ec2aec3d01 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
@@ -17,7 +17,7 @@ use IO::Uncompress::Adapter::Inflate ;
require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, %DEFLATE_CONSTANTS, $RawInflateError);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$RawInflateError = '';
@ISA = qw( Exporter IO::Uncompress::Base );
@@ -387,24 +387,6 @@ IO::Uncompress::RawInflate - Read RFC 1951 files/buffers
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
-
This module provides a Perl interface that allows the reading of
files/buffers that conform to RFC 1951.
diff --git a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
index 67643ae1b7..c9ae61b2d3 100644
--- a/ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
+++ b/ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
@@ -27,7 +27,7 @@ require Exporter ;
our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$UnzipError = '';
@ISA = qw(Exporter IO::Uncompress::RawInflate);
@@ -761,24 +761,6 @@ IO::Uncompress::Unzip - Read zip files/buffers
-B<WARNING -- This is a Beta release>.
-
-=over 5
-
-=item * DO NOT use in production code.
-
-=item * The documentation is incomplete in places.
-
-=item * Parts of the interface defined here are tentative.
-
-=item * Please report any problems you find.
-
-=back
-
-
-
-
-
This module provides a Perl interface that allows the reading of
zlib files/buffers.
diff --git a/ext/Compress/Raw/Zlib/Changes b/ext/Compress/Raw/Zlib/Changes
index fa4b7a8f64..8cc76389ca 100644
--- a/ext/Compress/Raw/Zlib/Changes
+++ b/ext/Compress/Raw/Zlib/Changes
@@ -1,6 +1,10 @@
CHANGES
-------
+ 2.001 1 November 2006
+
+ * Remove beta status.
+
2.000_14 26 October 2006
* Fixed memory leak on realloc.
diff --git a/ext/Compress/Raw/Zlib/README b/ext/Compress/Raw/Zlib/README
index 588d91bb1b..294900b9b3 100644
--- a/ext/Compress/Raw/Zlib/README
+++ b/ext/Compress/Raw/Zlib/README
@@ -1,9 +1,9 @@
Compress::Raw::Zlib
- Version 2.000_14
+ Version 2.001
- 26th October 2006
+ 1st November 2006
Copyright (c) 2005-2006 Paul Marquess. All rights reserved.
@@ -20,12 +20,6 @@
- WARNING
- THIS IS BETA CODE.
-
- DO NOT use in production code.
- Please report any problems.
-
DESCRIPTION
-----------
diff --git a/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm b/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
index b96d0ee0d3..b160c6f97d 100644
--- a/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
+++ b/ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
@@ -13,7 +13,7 @@ use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/ext/Compress/Zlib/Changes b/ext/Compress/Zlib/Changes
index cee6519d66..fbdd1801b5 100644
--- a/ext/Compress/Zlib/Changes
+++ b/ext/Compress/Zlib/Changes
@@ -1,6 +1,10 @@
CHANGES
-------
+ 2.001 1 November 2006
+
+ * Remove beta status.
+
2.000_14 26 October 2006
* No changes.
diff --git a/ext/Compress/Zlib/README b/ext/Compress/Zlib/README
index 88c2dc7108..e5291ad4da 100644
--- a/ext/Compress/Zlib/README
+++ b/ext/Compress/Zlib/README
@@ -1,9 +1,9 @@
Compress::Zlib
- Version 2.000_14
+ Version 2.001
- 26th October 2006
+ 1st November 2006
Copyright (c) 1995-2006 Paul Marquess. All rights reserved.
@@ -13,12 +13,6 @@
- WARNING
- THIS IS BETA CODE.
-
- DO NOT use in production code.
- Please report any problems.
-
DESCRIPTION
-----------
diff --git a/ext/Compress/Zlib/lib/Compress/Zlib.pm b/ext/Compress/Zlib/lib/Compress/Zlib.pm
index 8532508fc2..de212cab93 100644
--- a/ext/Compress/Zlib/lib/Compress/Zlib.pm
+++ b/ext/Compress/Zlib/lib/Compress/Zlib.pm
@@ -18,7 +18,7 @@ use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD);
-$VERSION = '2.000_14';
+$VERSION = '2.001';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;