Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync $VERSION across all files. #14

Merged
merged 1 commit into from
Apr 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/IPC/Run.pm
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ IPC::Run. Frequently, programs alter their behavior when they detect
that stdin, stdout, or stderr are not connected to a tty, assuming that
they are being run in batch mode. Whether this helps or hurts depends
on which optimizations change. And there's often no way of telling
what a program does in these areas other than trial and error and,
what a program does in these areas other than trial and error and
occasionally, reading the source. This includes different versions
and implementations of the same program.

Expand Down
2 changes: 1 addition & 1 deletion lib/IPC/Run/Debug.pm
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ use strict;
use Exporter;
use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS};
BEGIN {
$VERSION = '0.90';
$VERSION = '0.94';
@ISA = qw( Exporter );
@EXPORT = qw(
_debug
Expand Down
2 changes: 1 addition & 1 deletion lib/IPC/Run/IO.pm
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ use IPC::Run qw( Win32_MODE );

use vars qw{$VERSION};
BEGIN {
$VERSION = '0.90';
$VERSION = '0.94';
if ( Win32_MODE ) {
eval "use IPC::Run::Win32Helper; require IPC::Run::Win32IO; 1"
or ( $@ && die ) or die "$!";
Expand Down
2 changes: 1 addition & 1 deletion lib/IPC/Run/Timer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ use Symbol;
use Exporter;
use vars qw( $VERSION @ISA @EXPORT_OK %EXPORT_TAGS );
BEGIN {
$VERSION = '0.90';
$VERSION = '0.94';
@ISA = qw( Exporter );
@EXPORT_OK = qw(
check
Expand Down
2 changes: 1 addition & 1 deletion lib/IPC/Run/Win32Helper.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use Carp;
use IO::Handle;
use vars qw{ $VERSION @ISA @EXPORT };
BEGIN {
$VERSION = '0.90';
$VERSION = '0.94';
@ISA = qw( Exporter );
@EXPORT = qw(
win32_spawn
Expand Down
2 changes: 1 addition & 1 deletion lib/IPC/Run/Win32IO.pm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ require POSIX;

use vars qw{$VERSION};
BEGIN {
$VERSION = '0.90';
$VERSION = '0.94';
}

use Socket qw( IPPROTO_TCP TCP_NODELAY );
Expand Down
2 changes: 1 addition & 1 deletion lib/IPC/Run/Win32Pump.pm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ It parses a bunch of command line parameters from IPC::Run::Win32IO.
use strict;
use vars qw{$VERSION};
BEGIN {
$VERSION = '0.90';
$VERSION = '0.94';
}

use Win32API::File qw(
Expand Down