Remove beta status from compression modules
Paul Marquess [Wed, 1 Nov 2006 10:34:52 +0000 (10:34 +0000)]
From: "Paul Marquess" <paul.marquess@ntlworld.com>
Message-ID: <02b301c6fda1$5d799950$4e3c140a@myopwv.com>

p4raw-id: //depot/perl@29179

31 files changed:
ext/Compress/IO/Base/Changes
ext/Compress/IO/Base/README
ext/Compress/IO/Base/lib/IO/Compress/Base.pm
ext/Compress/IO/Base/lib/IO/Compress/Base/Common.pm
ext/Compress/IO/Base/lib/IO/Uncompress/AnyUncompress.pm
ext/Compress/IO/Base/lib/IO/Uncompress/Base.pm
ext/Compress/IO/Zlib/Changes
ext/Compress/IO/Zlib/README
ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Deflate.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Adapter/Identity.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Deflate.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Gzip.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Gzip/Constants.pm
ext/Compress/IO/Zlib/lib/IO/Compress/RawDeflate.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Zip.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Zip/Constants.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Constants.pm
ext/Compress/IO/Zlib/lib/IO/Compress/Zlib/Extra.pm
ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Identity.pm
ext/Compress/IO/Zlib/lib/IO/Uncompress/Adapter/Inflate.pm
ext/Compress/IO/Zlib/lib/IO/Uncompress/AnyInflate.pm
ext/Compress/IO/Zlib/lib/IO/Uncompress/Gunzip.pm
ext/Compress/IO/Zlib/lib/IO/Uncompress/Inflate.pm
ext/Compress/IO/Zlib/lib/IO/Uncompress/RawInflate.pm
ext/Compress/IO/Zlib/lib/IO/Uncompress/Unzip.pm
ext/Compress/Raw/Zlib/Changes
ext/Compress/Raw/Zlib/README
ext/Compress/Raw/Zlib/lib/Compress/Raw/Zlib.pm
ext/Compress/Zlib/Changes
ext/Compress/Zlib/README
ext/Compress/Zlib/lib/Compress/Zlib.pm

index 86d751f..0f022c5 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.001 1 November 2006
+
+      * Remove beta status.
+
   2.000_14 26 October 2006
 
       * IO::Uncompress::Base
index 66f5105..a290edd 100644 (file)
@@ -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.
 
 
 
-                                  WARNING
-                            THIS IS BETA CODE.
-
-                      DO NOT use in production code.
-                        Please report any problems.
-
 DESCRIPTION
 -----------
 
index 212b1fa..9b087b4 100644 (file)
@@ -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.
 
index 307af4a..fe45202 100644 (file)
@@ -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
index 3ed346a..2e231ab 100644 (file)
@@ -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.
index 0073291..0442f41 100644 (file)
@@ -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 ;
index b73b591..bc837f8 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.001 1 November 2006
+
+      * Remove beta status.
+
   2.000_14 26 October 2006
 
       * IO::Uncompress::Deflate
index 0dd5175..4ca5032 100644 (file)
@@ -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.
 
 
 
-                                  WARNING
-                            THIS IS BETA CODE.
-
-                      DO NOT use in production code.
-                        Please report any problems.
-
 DESCRIPTION
 -----------
 
index e728100..a8e4e9c 100644 (file)
@@ -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
 {
index 9c3f1e7..56876bc 100644 (file)
@@ -7,7 +7,7 @@ use bytes;
 use IO::Compress::Base::Common qw(:Status);
 our ($VERSION);
 
-$VERSION = '2.000_14';
+$VERSION = '2.001';
 
 sub mkCompObject
 {
index d304fbd..c964c1d 100644 (file)
@@ -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.
 
index 5d17194..7ec0d76 100644 (file)
@@ -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.
 
index 3598b10..f2f044b 100644 (file)
@@ -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);
 
index 0a916e2..762080a 100644 (file)
@@ -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.
 
index 908a4c3..c34589f 100644 (file)
@@ -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.
 
index 6e83a4a..a8218b5 100644 (file)
@@ -7,7 +7,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT, %ZIP_CM_MIN_VERSIONS);
 
-$VERSION = '2.000_14';
+$VERSION = '2.001';
 
 @ISA = qw(Exporter);
 
index 96bced6..f829c47 100644 (file)
@@ -9,7 +9,7 @@ require Exporter;
 
 our ($VERSION, @ISA, @EXPORT);
 
-$VERSION = '2.000_14';
+$VERSION = '2.001';
 
 @ISA = qw(Exporter);
 
index 4640829..0341cdf 100644 (file)
@@ -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;
 
index 516e838..ee99c00 100644 (file)
@@ -8,7 +8,7 @@ use IO::Compress::Base::Common qw(:Status);
 
 our ($VERSION);
 
-$VERSION = '2.000_14';
+$VERSION = '2.001';
 
 use Compress::Raw::Zlib ();
 
index e313360..e9fa4a0 100644 (file)
@@ -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';
 
 
 
index 915cd5f..66c7d02 100644 (file)
@@ -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.
index e465bcb..d2f5da8 100644 (file)
@@ -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.
 
index 2ec0a49..b41f5f9 100644 (file)
@@ -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.
 
index 53271ab..ec2aec3 100644 (file)
@@ -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.
 
index 67643ae..c9ae61b 100644 (file)
@@ -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.
 
index fa4b7a8..8cc7638 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.001 1 November 2006
+
+      * Remove beta status.
+
   2.000_14 26 October 2006
 
       * Fixed memory leak on realloc.
index 588d91b..294900b 100644 (file)
@@ -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.
 
 
 
-                                  WARNING
-                            THIS IS BETA CODE.
-
-                      DO NOT use in production code.
-                        Please report any problems.
-
 DESCRIPTION
 -----------
 
index b96d0ee..b160c6f 100644 (file)
@@ -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;
 
index cee6519..fbdd180 100644 (file)
@@ -1,6 +1,10 @@
 CHANGES
 -------
 
+  2.001 1 November 2006
+
+      * Remove beta status.
+
   2.000_14 26 October 2006
 
       * No changes.
index 88c2dc7..e5291ad 100644 (file)
@@ -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.
 
 
 
-                                  WARNING
-                            THIS IS BETA CODE.
-
-                      DO NOT use in production code.
-                        Please report any problems.
-
 DESCRIPTION
 -----------
 
index 8532508..de212ca 100644 (file)
@@ -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;