Skip to content

Commit 3199dbb

Browse files
committed
Minor version for release to bump Test::More::VERSION requirement
1 parent 9a8eadf commit 3199dbb

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Changes

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Revision history for Business-EDI
22

3+
0.05 2010-09-08
4+
Bump Test::More version requirement. This fixes clean installs on,
5+
for example, Ubuntu Lucid, where v0.92 doesn't have subtest.
6+
37
0.04 2010-08-27
48
HTML output added (html method).
59
Composite "value" removed (they have subparts, not a value).

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ WriteMakefile(
1010
ABSTRACT => 'Top level generator of U.N. EDI objects',
1111
PREREQ_PM => {
1212
'CGI' => 3.1,
13-
'Test::More' => 0.92,
13+
'Test::More' => 0.94,
1414
'Test::Simple' => 0.88,
1515
'Exporter::Easy' => 0.14,
1616
'List::MoreUtils' => 0.22,

lib/Business/EDI.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use warnings;
55
use Carp;
66
# use Data::Dumper;
77

8-
our $VERSION = 0.04;
8+
our $VERSION = 0.05;
99

1010
use UNIVERSAL::require;
1111
use Data::Dumper;

t/002-Spec-analysis.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ foreach (@versions) {
200200
}
201201

202202

203-
my @msgs = qw/ ORDERS ORDRSP INVOIC /;
203+
my @msgs = qw/ ORDERS ORDRSP INVOIC OSTRPT /;
204204

205205
note "Analyzing " . scalar(@versions) . " spec versions";
206206

0 commit comments

Comments
 (0)