summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2007-08-20 21:26:16 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2007-08-20 21:26:16 -0500
commit812dff7b451ac8107798a520195925637ea2f4b5 (patch)
tree3fc1e408b0811055dc7cb583c7dc8c8a2d158a0c
parent10ed5ca8a7d8b02d721bcfc0b47066a1c57b7f31 (diff)
downloadio-pty-easy-812dff7b451ac8107798a520195925637ea2f4b5.tar.gz
io-pty-easy-812dff7b451ac8107798a520195925637ea2f4b5.zip
doc changes for 0.02
-rw-r--r--Changes4
-rw-r--r--README3
-rw-r--r--lib/IO/Pty/Easy.pm4
3 files changed, 8 insertions, 3 deletions
diff --git a/Changes b/Changes
index f5cdf04..372a49e 100644
--- a/Changes
+++ b/Changes
@@ -1,4 +1,8 @@
Revision history for IO-Pty-Easy
+0.02 08/17/2007
+ Made calls which could possibly terminate the subprocess blocking by default
+ A few other minor bug fixes, doc fixes, and general cleanups
+
0.01 08/17/2007
Initial release
diff --git a/README b/README
index a462bad..c6c439d 100644
--- a/README
+++ b/README
@@ -1,8 +1,9 @@
-IO-Pty-Easy 0.01
+IO-Pty-Easy 0.02
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.
MAJOR CHANGES
+ 0.02: bug fixes
0.01: first version
INSTALLATION
diff --git a/lib/IO/Pty/Easy.pm b/lib/IO/Pty/Easy.pm
index c566079..c6e3994 100644
--- a/lib/IO/Pty/Easy.pm
+++ b/lib/IO/Pty/Easy.pm
@@ -12,11 +12,11 @@ IO::Pty::Easy - Easy interface to IO::Pty
=head1 VERSION
-Version 0.01 released 08/17/2007
+Version 0.02 released 08/17/2007
=cut
-our $VERSION = '0.01';
+our $VERSION = '0.02';
=head1 SYNOPSIS