summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2009-02-05 00:25:15 -0500
committerdoy <doy@tozt.net>2009-02-05 00:25:15 -0500
commitaa15791022f816b6f3cf38a40b71dd1e159136c6 (patch)
tree56a1fa308c430171fa8cc1cf54b34174394359c9
parent2d0da4ebf2a8da9b26e5fdc4dd15714687d24e94 (diff)
downloadio-pty-easy-aa15791022f816b6f3cf38a40b71dd1e159136c6.tar.gz
io-pty-easy-aa15791022f816b6f3cf38a40b71dd1e159136c6.zip
version bump to 0.050.05
-rw-r--r--Changes4
-rw-r--r--README2
-rw-r--r--lib/IO/Pty/Easy.pm4
3 files changed, 7 insertions, 3 deletions
diff --git a/Changes b/Changes
index 61e1268..9129295 100644
--- a/Changes
+++ b/Changes
@@ -1,11 +1,15 @@
Revision history for IO-Pty-Easy
+0.05 02/04/2009
+ - Fix read() returning undef on timeout
+
0.04 02/03/2009
- Don't mess with SIGCHLD, it breaks system() and ``
- Don't die if $pty->close is called multiple times (and close on DESTROY)
- Don't mess with SIGWINCH if we weren't the ones that set it up
- Sleep while waiting for a process to die, rather than spinning
- FreeBSD should pass all tests now (sorear)
+
0.03 08/20/2007
- Make sure stdin/out are connected to a tty before trying to clone winsize
from them
diff --git a/README b/README
index 7d1411e..f8b4e40 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-IO-Pty-Easy 0.04
+IO-Pty-Easy 0.05
IO::Pty::Easy is a module that makes using IO::Pty much easier. It wraps all of the code required to create the PTY, spawn subprocesses in it, and read/write on it. This module provides the same basic functionality as Expect.pm, except at a lower level; just reading and writing to the subprocess is supported, without any of the pattern matching or extra functionality provided by Expect.pm. Its primary use is to allow for intercepting and modifying input and output for console apps which require tty access; for instance it is currently being used in Interhack, a filter program for NetHack.
diff --git a/lib/IO/Pty/Easy.pm b/lib/IO/Pty/Easy.pm
index 0a6bbf1..e1f3265 100644
--- a/lib/IO/Pty/Easy.pm
+++ b/lib/IO/Pty/Easy.pm
@@ -13,11 +13,11 @@ IO::Pty::Easy - Easy interface to IO::Pty
=head1 VERSION
-Version 0.04 released 2/3/2009
+Version 0.05 released 2/4/2009
=cut
-our $VERSION = '0.04';
+our $VERSION = '0.05';
=head1 SYNOPSIS