Subject: | Typo in Test::Tester required version :) |
Hi,
Thanks for taking care of Test::Output!
When you took over maintainership and released 0.13, apparently you
tried to bump the Test::Tester dependency to version 0.107. However, it
seems that there is a typo, and ever since Test-Output-0.13, both
Makefile.PL and META.yml say 0.1037 for Test-Tester :) A trivial patch
is attached.
I think this might be the reason for one or two of the rest of the bug
reports against Test::Output filed since then...
G'luck,
Peter
Subject: | test-tester-version.patch |
Correctly specify the Test::Tester dependency as 0.107.
--- a/META.yml
+++ b/META.yml
@@ -13,7 +13,7 @@
Test::More: 0
File::Temp: 0
Sub::Exporter: 0
- Test::Tester: 0.1037
+ Test::Tester: 0.107
no_index:
directory:
- t
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -12,7 +12,7 @@
ABSTRACT_FROM => 'lib/Test/Output.pm',
PL_FILES => {},
PREREQ_PM => {
- 'Test::Tester' => '0.1037',
+ 'Test::Tester' => '0.107',
'Test::More' => '0',
'Sub::Exporter' => '0',
'File::Temp' => '0',