summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-07-06 22:42:18 -0500
committerJesse Luehrs <doy@tozt.net>2009-07-06 22:42:18 -0500
commit09d9f7aa14f50d03d6f207b9da6b325c5b99cbfd (patch)
tree66ab1af88cd8e63a5390ec53771cfb6f81fdaf84
parentac42d827c3725e38ab462e0b8f1ee1b8e28f851d (diff)
downloadio-pty-easy-09d9f7aa14f50d03d6f207b9da6b325c5b99cbfd.tar.gz
io-pty-easy-09d9f7aa14f50d03d6f207b9da6b325c5b99cbfd.zip
bump version to 0.060.06
-rw-r--r--README2
-rw-r--r--lib/IO/Pty/Easy.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index f8b4e40..334a3b1 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-IO-Pty-Easy 0.05
+IO-Pty-Easy 0.06
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 97356c7..1d74f59 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.05 released 2/4/2009
+Version 0.06 released 7/6/2009
=cut
-our $VERSION = '0.05';
+our $VERSION = '0.06';
=head1 SYNOPSIS