Codebase list libcapture-tiny-perl / release-0.06
bump version to 0.06; fix Changes & meta for release David Golden 15 years ago
7 changed file(s) with 16 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
55 # copy of the License from http://www.apache.org/licenses/LICENSE-2.0
66
77 Revision history for Capture-Tiny
8
9 0.06 Thu May 7 06:54:53 EDT 2009
10
11 Fixed:
12
13 - On Win32, subprocesses now close themselves on EOF instead of being
14 killed with a signal
815
916 0.05_51 Tue Apr 21 07:00:38 EDT 2009
1017
2424 t/14-stderr-tied.t
2525 t/15-stdin-tied.t
2626 t/lib/Cases.pm
27 t/lib/Tests.pm
2827 t/lib/TieLC.pm
2928 t/lib/Utils.pm
3029 Todo
00 ---
11 name: Capture-Tiny
2 version: 0.05_51
2 version: 0.06
33 author:
44 - 'David Golden <dagolden@cpan.org>'
55 abstract: 'Capture STDOUT and STDERR from Perl, XS or external programs'
1818 provides:
1919 Capture::Tiny:
2020 file: lib/Capture/Tiny.pm
21 version: 0.05_51
22 generated_by: Module::Build version 0.32
21 version: 0.06
22 generated_by: Module::Build version 0.3201
2323 meta-spec:
24 url: http://module-build.sourceforge.net/META-spec-v1.2.html
25 version: 1.2
24 url: http://module-build.sourceforge.net/META-spec-v1.4.html
25 version: 1.4
2626 no_index:
2727 directory:
2828 - examples
0 # Note: this file was auto-generated by Module::Build::Compat version 0.32
0 # Note: this file was auto-generated by Module::Build::Compat version 0.32_01
11 require 5.006;
22 use ExtUtils::MakeMaker;
33 WriteMakefile
22 programs
33
44 VERSION
5 This documentation describes version 0.05_51.
5 This documentation describes version 0.06.
66
77 SYNOPSIS
88 use Capture::Tiny qw/capture tee capture_merged tee_merged/;
1515 # Get PerlIO or fake it
1616 BEGIN { eval { require PerlIO; 1 } or *PerlIO::get_layers = sub { return () }; }
1717
18 our $VERSION = '0.05_51';
18 our $VERSION = '0.06';
1919 $VERSION = eval $VERSION; ## no critic
2020 our @ISA = qw/Exporter/;
2121 our @EXPORT_OK = qw/capture capture_merged tee tee_merged/;
77
88 =head1 VERSION
99
10 This documentation describes version 0.05_51.
10 This documentation describes version 0.06.
1111
1212 =head1 SYNOPSIS
1313