From 63ad731da6e7c95184317616677400634991d7a4 Mon Sep 17 00:00:00 2001 From: Paul Marquess Date: Wed, 1 Nov 2006 10:34:52 +0000 Subject: [PATCH] Remove beta status from compression modules From: "Paul Marquess" Message-ID: <02b301c6fda1$5d799950$4e3c140a@myopwv.com> p4raw-id: //depot/perl@29179 --- ext/Compress/IO/Base/Changes | 4 ++++ ext/Compress/IO/Base/README | 10 ++-------- ext/Compress/IO/Base/lib/IO/Compress/Base.pm | 2 +- ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm | 2 +- .../IO/Base/lib/IO/Uncompress/AnyUncompress.pm | 20 +------------------- ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm | 2 +- ext/Compress/IO/Zlib/Changes | 4 ++++ ext/Compress/IO/Zlib/README | 10 ++-------- .../IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm | 2 +- .../IO/Zlib/lib/IO/Compress/Adapter/Identity.pm | 2 +- ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm | 20 +------------------- ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm | 20 +------------------- .../IO/Zlib/lib/IO/Compress/Gzip/Constants.pm | 2 +- ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm | 20 +------------------- ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm | 20 +------------------- .../IO/Zlib/lib/IO/Compress/Zip/Constants.pm | 2 +- .../IO/Zlib/lib/IO/Compress/Zlib/Constants.pm | 2 +- ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm | 2 +- .../IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm | 2 +- .../IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm | 2 +- ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm | 20 +------------------- ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm | 20 +------------------- ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm | 20 +------------------- ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm | 20 +------------------- ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm | 20 +------------------- ext/Compress/Raw/Zlib/Changes | 4 ++++ ext/Compress/Raw/Zlib/README | 10 ++-------- ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm | 2 +- ext/Compress/Zlib/Changes | 4 ++++ ext/Compress/Zlib/README | 10 ++-------- ext/Compress/Zlib/lib/Compress/Zlib.pm | 2 +- 31 files changed, 47 insertions(+), 235 deletions(-) diff --git a/ext/Compress/IO/Base/Changes b/ext/Compress/IO/Base/Changes index 86d751f..0f022c5 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 66f5105..a290edd 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 212b1fa..9b087b4 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 307af4a..fe45202 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 3ed346a..2e231ab 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. - -=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 0073291..0442f41 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 b73b591..bc837f8 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 0dd5175..4ca5032 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 e728100..a8e4e9c 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 9c3f1e7..56876bc 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 d304fbd..c964c1d 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. - -=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 5d17194..7ec0d76 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. - -=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 3598b10..f2f044b 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 0a916e2..762080a 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. - -=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 908a4c3..c34589f 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. - -=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 6e83a4a..a8218b5 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 96bced6..f829c47 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 4640829..0341cdf 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 516e838..ee99c00 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 e313360..e9fa4a0 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 915cd5f..66c7d02 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. - -=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 e465bcb..d2f5da8 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. - -=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 2ec0a49..b41f5f9 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. - -=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 53271ab..ec2aec3 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. - -=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 67643ae..c9ae61b 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. - -=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 fa4b7a8..8cc7638 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 588d91b..294900b 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 b96d0ee..b160c6f 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 cee6519..fbdd180 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 88c2dc7..e5291ad 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 8532508..de212ca 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; -- 2.7.4