'Term::ANSIColor' => {
'MAINTAINER' => 'rra',
- 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.01.tar.gz',
+ 'DISTRIBUTION' => 'RRA/Term-ANSIColor-4.02.tar.gz',
'FILES' => q[cpan/Term-ANSIColor],
'EXCLUDED' => [
qr{^tests/},
# Term::ANSIColor -- Color screen output using ANSI escape sequences.
#
# Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009, 2010,
-# 2011, 2012 Russ Allbery <rra@stanford.edu>
+# 2011, 2012, 2013 Russ Allbery <rra@stanford.edu>
# Copyright 1996 Zenin
# Copyright 2012 Kurt Starsinic <kstarsinic@gmail.com>
#
# against circular module loading (not that we load any modules, but
# consistency is good).
BEGIN {
- $VERSION = '4.01';
+ $VERSION = '4.02';
# All of the basic supported constants, used in %EXPORT_TAGS.
my @colorlist = qw(
+2013-01-07 Russ Allbery <rra@stanford.edu>
+
+ * ANSIColor.pm: Version 4.02 released.
+
+ * Makefile.PL: Add the minimum Perl version to the package
+ metadata.
+
+ * t/basic256.t: List the tag first in the import list for
+ compatibility with the Exporter from Perl 5.6.2. Thanks to David
+ Cantrell for the testing and debugging.
+
2012-12-31 Russ Allbery <rra@stanford.edu>
* ANSIColor.pm: Version 4.01 released.
- Term::ANSIColor version 4.01
+ Term::ANSIColor version 4.02
(A simple ANSI text attribute control module)
This program is free software; you may redistribute it and/or modify it
For bug tracking, this package uses the CPAN bug tracker at:
- https://rt.cpan.org/
-
- Look for the Term-ANSIColor distribution.
+ https://rt.cpan.org/Public/Dist/Display.html?Name=Term-ANSIColor
I welcome bug reports and patches for this package at rra@stanford.edu
- or via the CPAN bug tracker at <http://rt.cpan.org/>. However, please
- be aware that I tend to be extremely busy and work projects often take
- priority. I'll save your mail and get to it as soon as I can, but it
- may take me a couple of months.
+ or via the CPAN bug tracker. However, please be aware that I tend to be
+ extremely busy and work projects often take priority. I'll save your
+ mail and get to it as soon as I can, but it may take me a couple of
+ months.
SOURCE REPOSITORY
To BlueT - Matthew Lien - 練喆明 for quick testing of 4.00 and reporting
a problem with skipping one of the tests.
+ To David Cantrell for testing with Perl 5.6.2 and debugging why a test
+ case didn't work with its version of Exporter.
+
To Larry Wall, as always, for Perl.
LICENSE
Copyright 1996 Zenin
Copyright 1996, 1997, 1998, 2000, 2001, 2002, 2005, 2006, 2008, 2009,
- 2010, 2011, 2012 Russ Allbery <rra@stanford.edu>
+ 2010, 2011, 2012, 2013 Russ Allbery <rra@stanford.edu>
Copyright 2012 Kurt Starsinic <kstarsinic@gmail.com>
This program is free software; you may redistribute it and/or modify
# Tests for 256-color support.
#
# Copyright 2012 Kurt Starsinic <kstarsinic@gmail.com>
-# Copyright 2012 Russ Allbery <rra@stanford.edu>
+# Copyright 2012, 2013 Russ Allbery <rra@stanford.edu>
#
# This program is free software; you may redistribute it and/or modify it
# under the same terms as Perl itself.
BEGIN {
delete $ENV{ANSI_COLORS_ALIASES};
delete $ENV{ANSI_COLORS_DISABLED};
- use_ok('Term::ANSIColor', qw(color uncolor colorvalid :constants256));
+ use_ok('Term::ANSIColor', qw(:constants256 color uncolor colorvalid));
}
# Test basic 256-color codes.
BEGIN {
delete $ENV{ANSI_COLORS_ALIASES};
delete $ENV{ANSI_COLORS_DISABLED};
- use_ok('Term::ANSIColor', qw/:constants/);
+ use_ok('Term::ANSIColor', qw(:constants));
}
# Ensure that using a constant doesn't leak anything in $@.