Codebase list libemail-mime-createhtml-perl / 263ca98
v1.040 Henry Van Styn 9 years ago
7 changed file(s) with 24 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
0 Fri Feb 12 17:20:07 2010 - 1.030
0 Revision history for perl module Email::MIME::CreateHTML
1
2 1.040 2014-08-19
3 - POD tweaks
4 - Replace CVS-style VERSION with simple scalar version
5 - Added config for Travis CI w/ coveralls
6 - Add support for perl-5.18 and higher - fixes:
7 * RT#900063
8 * RT#85953
9 * RT#96806
10 - Convert to use Dist::Zilla (fixes RT#61245)
11 - Updated Changes file format
12
13 1.030 2010-02-12
114 Add no_index for Email::MIME
215
3 Wed Feb 10 13:33:01 2010 - 1.029
16 1.029 2010-02-10
417 Add Carp to fix warnings (CPAN RT51208)
518 Insist on 3.15 of HTML::TokeParser::Simple (CPAN RT 28788)
619 POD Syntax fix
720
8 Thu Oct 26 10:25:31 2006 - 1.026
21 1.026 2006-10-26
922 * General bug-avoidance changes
1023 * Update for PEP website
1124 * Misc spelling fixes
12
22 author = Tony Hennessy
33 author = Simon Flack
44 author = John Alden <cpan _at_ bbc _dot_ co _dot_ uk>
5 author = Ricardo Signes <rjbs@cpan.org>
56 author = Henry Van Styn <vanstyn@cpan.org>
67 license = GPL_2
78 copyright_holder = British Broadcasting Corporation
89 copyright_year = 2005
910
10 version = 1.039
11 version = 1.040
1112
1213 [Encoding]
1314 encoding = bytes
14 match = ^t/
15 match = ^t/data/
1516
1617
1718 [@Filter]
99 use Data::Serializer;
1010 use URI::Escape;
1111
12 our $VERSION = '1.039';
12 our $VERSION = '1.040';
1313
1414 sub new {
1515 my ($class, $args) = @_;
1111 use MIME::Types;
1212 use File::Spec;
1313
14 our $VERSION = '1.039';
14 our $VERSION = '1.040';
1515
1616 sub new {
1717 my ($class, $options) = @_;
1010 use MIME::Types;
1111 use LWP::UserAgent;
1212
13 our $VERSION = '1.039';
13 our $VERSION = '1.040';
1414
1515 sub new {
1616 my ($class, $options) = @_;
99 use Carp;
1010 use Scalar::Util ();
1111
12 our $VERSION = '1.039';
12 our $VERSION = '1.040';
1313
1414 use vars qw($HaveCache $HaveLWP $HaveFilesystem);
1515
1212 use HTML::TokeParser::Simple;
1313 use HTML::Tagset;
1414
15 our $VERSION = '1.039';
15 our $VERSION = '1.040';
1616
1717 use Email::MIME::CreateHTML::Resolver;
1818