From 0b80f2cbd0f9a971923be7e9b92062bfea7ae71d Mon Sep 17 00:00:00 2001 From: Leon Timmermans Date: Mon, 31 Jul 2023 03:41:11 +0200 Subject: [PATCH] Bump to version 3.46 --- Changes | 8 ++++++++ lib/App/Prove.pm | 4 ++-- lib/App/Prove/State.pm | 4 ++-- lib/App/Prove/State/Result.pm | 4 ++-- lib/App/Prove/State/Result/Test.pm | 4 ++-- lib/TAP/Base.pm | 4 ++-- lib/TAP/Formatter/Base.pm | 4 ++-- lib/TAP/Formatter/Color.pm | 4 ++-- lib/TAP/Formatter/Console.pm | 4 ++-- lib/TAP/Formatter/Console/ParallelSession.pm | 4 ++-- lib/TAP/Formatter/Console/Session.pm | 4 ++-- lib/TAP/Formatter/File.pm | 4 ++-- lib/TAP/Formatter/File/Session.pm | 4 ++-- lib/TAP/Formatter/Session.pm | 4 ++-- lib/TAP/Harness.pm | 4 ++-- lib/TAP/Harness/Env.pm | 4 ++-- lib/TAP/Object.pm | 4 ++-- lib/TAP/Parser.pm | 4 ++-- lib/TAP/Parser/Aggregator.pm | 4 ++-- lib/TAP/Parser/Grammar.pm | 4 ++-- lib/TAP/Parser/Iterator.pm | 4 ++-- lib/TAP/Parser/Iterator/Array.pm | 4 ++-- lib/TAP/Parser/Iterator/Process.pm | 4 ++-- lib/TAP/Parser/Iterator/Stream.pm | 4 ++-- lib/TAP/Parser/IteratorFactory.pm | 4 ++-- lib/TAP/Parser/Multiplexer.pm | 4 ++-- lib/TAP/Parser/Result.pm | 4 ++-- lib/TAP/Parser/Result/Bailout.pm | 4 ++-- lib/TAP/Parser/Result/Comment.pm | 4 ++-- lib/TAP/Parser/Result/Plan.pm | 4 ++-- lib/TAP/Parser/Result/Pragma.pm | 4 ++-- lib/TAP/Parser/Result/Test.pm | 4 ++-- lib/TAP/Parser/Result/Unknown.pm | 4 ++-- lib/TAP/Parser/Result/Version.pm | 4 ++-- lib/TAP/Parser/Result/YAML.pm | 4 ++-- lib/TAP/Parser/ResultFactory.pm | 4 ++-- lib/TAP/Parser/Scheduler.pm | 4 ++-- lib/TAP/Parser/Scheduler/Job.pm | 4 ++-- lib/TAP/Parser/Scheduler/Spinner.pm | 4 ++-- lib/TAP/Parser/Source.pm | 4 ++-- lib/TAP/Parser/SourceHandler.pm | 4 ++-- lib/TAP/Parser/SourceHandler/Executable.pm | 4 ++-- lib/TAP/Parser/SourceHandler/File.pm | 4 ++-- lib/TAP/Parser/SourceHandler/Handle.pm | 4 ++-- lib/TAP/Parser/SourceHandler/Perl.pm | 4 ++-- lib/TAP/Parser/SourceHandler/RawTAP.pm | 4 ++-- lib/TAP/Parser/YAMLish/Reader.pm | 4 ++-- lib/TAP/Parser/YAMLish/Writer.pm | 4 ++-- lib/Test/Harness.pm | 4 ++-- 49 files changed, 104 insertions(+), 96 deletions(-) diff --git a/Changes b/Changes index f8ed6402..ab50d4cd 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Test-Harness +3.46 2023-07-30 + - Color the "ok"s as well. + - Skip symlink tests on msys2 + - Use use absolute path for executable tests + - Space-quote executable if has spaces + - Avoid using Errno::EINTR directly for platforms without it + - stop calling import on App::Prove plugins + 3.45_02 2023-06-01 - Avoid using Errno::EINTR directly for platforms without it diff --git a/lib/App/Prove.pm b/lib/App/Prove.pm index 41e58f98..965f9180 100644 --- a/lib/App/Prove.pm +++ b/lib/App/Prove.pm @@ -18,11 +18,11 @@ App::Prove - Implements the C command. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/App/Prove/State.pm b/lib/App/Prove/State.pm index c8524f0f..1883f5d1 100644 --- a/lib/App/Prove/State.pm +++ b/lib/App/Prove/State.pm @@ -25,11 +25,11 @@ App::Prove::State - State storage for the C command. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/App/Prove/State/Result.pm b/lib/App/Prove/State/Result.pm index 6c3f1453..1fe1f717 100644 --- a/lib/App/Prove/State/Result.pm +++ b/lib/App/Prove/State/Result.pm @@ -14,11 +14,11 @@ App::Prove::State::Result - Individual test suite results. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/App/Prove/State/Result/Test.pm b/lib/App/Prove/State/Result/Test.pm index 6e5a7501..4d7b2d6d 100644 --- a/lib/App/Prove/State/Result/Test.pm +++ b/lib/App/Prove/State/Result/Test.pm @@ -9,11 +9,11 @@ App::Prove::State::Result::Test - Individual test results. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Base.pm b/lib/TAP/Base.pm index 4a8ac355..5948f38b 100644 --- a/lib/TAP/Base.pm +++ b/lib/TAP/Base.pm @@ -12,11 +12,11 @@ and L =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; use constant GOT_TIME_HIRES => do { eval 'use Time::HiRes qw(time);'; diff --git a/lib/TAP/Formatter/Base.pm b/lib/TAP/Formatter/Base.pm index be84e193..e92a4ac0 100644 --- a/lib/TAP/Formatter/Base.pm +++ b/lib/TAP/Formatter/Base.pm @@ -58,11 +58,11 @@ TAP::Formatter::Base - Base class for harness output delegates =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Formatter/Color.pm b/lib/TAP/Formatter/Color.pm index 0d6bb601..eeb58e1b 100644 --- a/lib/TAP/Formatter/Color.pm +++ b/lib/TAP/Formatter/Color.pm @@ -39,11 +39,11 @@ TAP::Formatter::Color - Run Perl test scripts with color =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Formatter/Console.pm b/lib/TAP/Formatter/Console.pm index 6e6a1e50..61e572cf 100644 --- a/lib/TAP/Formatter/Console.pm +++ b/lib/TAP/Formatter/Console.pm @@ -11,11 +11,11 @@ TAP::Formatter::Console - Harness output delegate for default console output =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Formatter/Console/ParallelSession.pm b/lib/TAP/Formatter/Console/ParallelSession.pm index 8af6dc43..ac5360be 100644 --- a/lib/TAP/Formatter/Console/ParallelSession.pm +++ b/lib/TAP/Formatter/Console/ParallelSession.pm @@ -41,11 +41,11 @@ TAP::Formatter::Console::ParallelSession - Harness output delegate for parallel =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Formatter/Console/Session.pm b/lib/TAP/Formatter/Console/Session.pm index 6629feec..3b1ab77f 100644 --- a/lib/TAP/Formatter/Console/Session.pm +++ b/lib/TAP/Formatter/Console/Session.pm @@ -26,11 +26,11 @@ TAP::Formatter::Console::Session - Harness output delegate for default console o =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Formatter/File.pm b/lib/TAP/Formatter/File.pm index a79af754..a505b8c4 100644 --- a/lib/TAP/Formatter/File.pm +++ b/lib/TAP/Formatter/File.pm @@ -13,11 +13,11 @@ TAP::Formatter::File - Harness output delegate for file output =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Formatter/File/Session.pm b/lib/TAP/Formatter/File/Session.pm index 8fd81d99..dcbdefd0 100644 --- a/lib/TAP/Formatter/File/Session.pm +++ b/lib/TAP/Formatter/File/Session.pm @@ -10,11 +10,11 @@ TAP::Formatter::File::Session - Harness output delegate for file output =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Formatter/Session.pm b/lib/TAP/Formatter/Session.pm index e55b2455..cae96fb7 100644 --- a/lib/TAP/Formatter/Session.pm +++ b/lib/TAP/Formatter/Session.pm @@ -23,11 +23,11 @@ TAP::Formatter::Session - Abstract base class for harness output delegate =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 METHODS diff --git a/lib/TAP/Harness.pm b/lib/TAP/Harness.pm index 11291308..175a2916 100644 --- a/lib/TAP/Harness.pm +++ b/lib/TAP/Harness.pm @@ -16,11 +16,11 @@ TAP::Harness - Run test scripts with statistics =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; $ENV{HARNESS_ACTIVE} = 1; $ENV{HARNESS_VERSION} = $VERSION; diff --git a/lib/TAP/Harness/Env.pm b/lib/TAP/Harness/Env.pm index 1eb6969c..1229db84 100644 --- a/lib/TAP/Harness/Env.pm +++ b/lib/TAP/Harness/Env.pm @@ -7,7 +7,7 @@ use constant IS_VMS => ( $^O eq 'VMS' ); use TAP::Object; use Text::ParseWords qw/shellwords/; -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; # Get the parts of @INC which are changed from the stock list AND # preserve reordering of stock directories. @@ -126,7 +126,7 @@ TAP::Harness::Env - Parsing harness related environmental variables where approp =head1 VERSION -Version 3.45_02 +Version 3.46 =head1 SYNOPSIS diff --git a/lib/TAP/Object.pm b/lib/TAP/Object.pm index 5cc48e20..ddc37d39 100644 --- a/lib/TAP/Object.pm +++ b/lib/TAP/Object.pm @@ -9,11 +9,11 @@ TAP::Object - Base class that provides common functionality to all C mod =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser.pm b/lib/TAP/Parser.pm index e7b96348..5a68efea 100644 --- a/lib/TAP/Parser.pm +++ b/lib/TAP/Parser.pm @@ -27,11 +27,11 @@ TAP::Parser - Parse L output =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; my $DEFAULT_TAP_VERSION = 12; my $MAX_TAP_VERSION = 13; diff --git a/lib/TAP/Parser/Aggregator.pm b/lib/TAP/Parser/Aggregator.pm index 495c1dbd..bdb79193 100644 --- a/lib/TAP/Parser/Aggregator.pm +++ b/lib/TAP/Parser/Aggregator.pm @@ -12,11 +12,11 @@ TAP::Parser::Aggregator - Aggregate TAP::Parser results =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Grammar.pm b/lib/TAP/Parser/Grammar.pm index 00cb7161..d87d0da7 100644 --- a/lib/TAP/Parser/Grammar.pm +++ b/lib/TAP/Parser/Grammar.pm @@ -14,11 +14,11 @@ TAP::Parser::Grammar - A grammar for the Test Anything Protocol. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Iterator.pm b/lib/TAP/Parser/Iterator.pm index 43e25412..f551f30d 100644 --- a/lib/TAP/Parser/Iterator.pm +++ b/lib/TAP/Parser/Iterator.pm @@ -11,11 +11,11 @@ TAP::Parser::Iterator - Base class for TAP source iterators =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Iterator/Array.pm b/lib/TAP/Parser/Iterator/Array.pm index d7390485..2cdd6a5a 100644 --- a/lib/TAP/Parser/Iterator/Array.pm +++ b/lib/TAP/Parser/Iterator/Array.pm @@ -11,11 +11,11 @@ TAP::Parser::Iterator::Array - Iterator for array-based TAP sources =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Iterator/Process.pm b/lib/TAP/Parser/Iterator/Process.pm index e5e3421e..d8db18bc 100644 --- a/lib/TAP/Parser/Iterator/Process.pm +++ b/lib/TAP/Parser/Iterator/Process.pm @@ -16,11 +16,11 @@ TAP::Parser::Iterator::Process - Iterator for process-based TAP sources =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Iterator/Stream.pm b/lib/TAP/Parser/Iterator/Stream.pm index 7dda59c6..9df689f4 100644 --- a/lib/TAP/Parser/Iterator/Stream.pm +++ b/lib/TAP/Parser/Iterator/Stream.pm @@ -11,11 +11,11 @@ TAP::Parser::Iterator::Stream - Iterator for filehandle-based TAP sources =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/IteratorFactory.pm b/lib/TAP/Parser/IteratorFactory.pm index 5cc31dff..9dfe540a 100644 --- a/lib/TAP/Parser/IteratorFactory.pm +++ b/lib/TAP/Parser/IteratorFactory.pm @@ -16,11 +16,11 @@ TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use fo =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Multiplexer.pm b/lib/TAP/Parser/Multiplexer.pm index cdfa1cfe..194a6955 100644 --- a/lib/TAP/Parser/Multiplexer.pm +++ b/lib/TAP/Parser/Multiplexer.pm @@ -18,11 +18,11 @@ TAP::Parser::Multiplexer - Multiplex multiple TAP::Parsers =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Result.pm b/lib/TAP/Parser/Result.pm index fa898cd1..da3a0ab2 100644 --- a/lib/TAP/Parser/Result.pm +++ b/lib/TAP/Parser/Result.pm @@ -24,11 +24,11 @@ TAP::Parser::Result - Base class for TAP::Parser output objects =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Result/Bailout.pm b/lib/TAP/Parser/Result/Bailout.pm index 8f409478..0fdee0ac 100644 --- a/lib/TAP/Parser/Result/Bailout.pm +++ b/lib/TAP/Parser/Result/Bailout.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::Bailout - Bailout result token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/Result/Comment.pm b/lib/TAP/Parser/Result/Comment.pm index c526cfe3..1093694b 100644 --- a/lib/TAP/Parser/Result/Comment.pm +++ b/lib/TAP/Parser/Result/Comment.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::Comment - Comment result token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/Result/Plan.pm b/lib/TAP/Parser/Result/Plan.pm index 48ad2739..067fe7b4 100644 --- a/lib/TAP/Parser/Result/Plan.pm +++ b/lib/TAP/Parser/Result/Plan.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::Plan - Plan result token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/Result/Pragma.pm b/lib/TAP/Parser/Result/Pragma.pm index 14b913ab..bc7857a4 100644 --- a/lib/TAP/Parser/Result/Pragma.pm +++ b/lib/TAP/Parser/Result/Pragma.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::Pragma - TAP pragma token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/Result/Test.pm b/lib/TAP/Parser/Result/Test.pm index 9820d49d..63f6ad3c 100644 --- a/lib/TAP/Parser/Result/Test.pm +++ b/lib/TAP/Parser/Result/Test.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::Test - Test result token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/Result/Unknown.pm b/lib/TAP/Parser/Result/Unknown.pm index b87454c2..18b5620e 100644 --- a/lib/TAP/Parser/Result/Unknown.pm +++ b/lib/TAP/Parser/Result/Unknown.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::Unknown - Unknown result token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/Result/Version.pm b/lib/TAP/Parser/Result/Version.pm index 2073073d..a64540c5 100644 --- a/lib/TAP/Parser/Result/Version.pm +++ b/lib/TAP/Parser/Result/Version.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::Version - TAP syntax version token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/Result/YAML.pm b/lib/TAP/Parser/Result/YAML.pm index 34cd4b0c..d44d513d 100644 --- a/lib/TAP/Parser/Result/YAML.pm +++ b/lib/TAP/Parser/Result/YAML.pm @@ -11,11 +11,11 @@ TAP::Parser::Result::YAML - YAML result token. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 DESCRIPTION diff --git a/lib/TAP/Parser/ResultFactory.pm b/lib/TAP/Parser/ResultFactory.pm index 02058bfd..416ed273 100644 --- a/lib/TAP/Parser/ResultFactory.pm +++ b/lib/TAP/Parser/ResultFactory.pm @@ -29,11 +29,11 @@ TAP::Parser::ResultFactory - Factory for creating TAP::Parser output objects =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head2 DESCRIPTION diff --git a/lib/TAP/Parser/Scheduler.pm b/lib/TAP/Parser/Scheduler.pm index 1be9d9c6..b5860e2a 100644 --- a/lib/TAP/Parser/Scheduler.pm +++ b/lib/TAP/Parser/Scheduler.pm @@ -13,11 +13,11 @@ TAP::Parser::Scheduler - Schedule tests during parallel testing =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Scheduler/Job.pm b/lib/TAP/Parser/Scheduler/Job.pm index 13f3f776..5b4d8cfb 100644 --- a/lib/TAP/Parser/Scheduler/Job.pm +++ b/lib/TAP/Parser/Scheduler/Job.pm @@ -10,11 +10,11 @@ TAP::Parser::Scheduler::Job - A single testing job. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Scheduler/Spinner.pm b/lib/TAP/Parser/Scheduler/Spinner.pm index aa40b770..c54ff105 100644 --- a/lib/TAP/Parser/Scheduler/Spinner.pm +++ b/lib/TAP/Parser/Scheduler/Spinner.pm @@ -10,11 +10,11 @@ TAP::Parser::Scheduler::Spinner - A no-op job. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/Source.pm b/lib/TAP/Parser/Source.pm index ba1f3813..419b7852 100644 --- a/lib/TAP/Parser/Source.pm +++ b/lib/TAP/Parser/Source.pm @@ -14,11 +14,11 @@ TAP::Parser::Source - a TAP source & meta data about it =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/SourceHandler.pm b/lib/TAP/Parser/SourceHandler.pm index b90fcc9e..30c48ba3 100644 --- a/lib/TAP/Parser/SourceHandler.pm +++ b/lib/TAP/Parser/SourceHandler.pm @@ -12,11 +12,11 @@ TAP::Parser::SourceHandler - Base class for different TAP source handlers =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/SourceHandler/Executable.pm b/lib/TAP/Parser/SourceHandler/Executable.pm index d98cec76..b4c1a3f5 100644 --- a/lib/TAP/Parser/SourceHandler/Executable.pm +++ b/lib/TAP/Parser/SourceHandler/Executable.pm @@ -18,11 +18,11 @@ TAP::Parser::SourceHandler::Executable - Stream output from an executable TAP so =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/SourceHandler/File.pm b/lib/TAP/Parser/SourceHandler/File.pm index a12b629a..45ebfeed 100644 --- a/lib/TAP/Parser/SourceHandler/File.pm +++ b/lib/TAP/Parser/SourceHandler/File.pm @@ -16,11 +16,11 @@ TAP::Parser::SourceHandler::File - Stream TAP from a text file. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/SourceHandler/Handle.pm b/lib/TAP/Parser/SourceHandler/Handle.pm index c2d3bdb1..c7b8516e 100644 --- a/lib/TAP/Parser/SourceHandler/Handle.pm +++ b/lib/TAP/Parser/SourceHandler/Handle.pm @@ -16,11 +16,11 @@ TAP::Parser::SourceHandler::Handle - Stream TAP from an IO::Handle or a GLOB. =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/SourceHandler/Perl.pm b/lib/TAP/Parser/SourceHandler/Perl.pm index a3029555..0fc0825b 100644 --- a/lib/TAP/Parser/SourceHandler/Perl.pm +++ b/lib/TAP/Parser/SourceHandler/Perl.pm @@ -21,11 +21,11 @@ TAP::Parser::SourceHandler::Perl - Stream TAP from a Perl executable =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/SourceHandler/RawTAP.pm b/lib/TAP/Parser/SourceHandler/RawTAP.pm index 2d3fbc4c..d4af5f41 100644 --- a/lib/TAP/Parser/SourceHandler/RawTAP.pm +++ b/lib/TAP/Parser/SourceHandler/RawTAP.pm @@ -16,11 +16,11 @@ TAP::Parser::SourceHandler::RawTAP - Stream output from raw TAP in a scalar/arra =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; =head1 SYNOPSIS diff --git a/lib/TAP/Parser/YAMLish/Reader.pm b/lib/TAP/Parser/YAMLish/Reader.pm index 77e75ec8..aed4d014 100644 --- a/lib/TAP/Parser/YAMLish/Reader.pm +++ b/lib/TAP/Parser/YAMLish/Reader.pm @@ -5,7 +5,7 @@ use warnings; use base 'TAP::Object'; -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; # No EBCDIC support on early perls *to_native = (ord "A" == 65 || $] < 5.008) @@ -284,7 +284,7 @@ TAP::Parser::YAMLish::Reader - Read YAMLish data from iterator =head1 VERSION -Version 3.45_02 +Version 3.46 =head1 SYNOPSIS diff --git a/lib/TAP/Parser/YAMLish/Writer.pm b/lib/TAP/Parser/YAMLish/Writer.pm index 95f96062..571f9731 100644 --- a/lib/TAP/Parser/YAMLish/Writer.pm +++ b/lib/TAP/Parser/YAMLish/Writer.pm @@ -5,7 +5,7 @@ use warnings; use base 'TAP::Object'; -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; # No EBCDIC support on early perls *from_native = (ord "A" == 65 || $] < 5.008) @@ -155,7 +155,7 @@ TAP::Parser::YAMLish::Writer - Write YAMLish data =head1 VERSION -Version 3.45_02 +Version 3.46 =head1 SYNOPSIS diff --git a/lib/Test/Harness.pm b/lib/Test/Harness.pm index 327c9a0d..5b1a6923 100644 --- a/lib/Test/Harness.pm +++ b/lib/Test/Harness.pm @@ -31,11 +31,11 @@ Test::Harness - Run Perl standard test scripts with statistics =head1 VERSION -Version 3.45_02 +Version 3.46 =cut -our $VERSION = '3.45_02'; +our $VERSION = '3.46'; # Backwards compatibility for exportable variable names. *verbose = *Verbose;