summaryrefslogtreecommitdiffstats
path: root/Changes
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-03-05 00:36:07 -0600
committerJesse Luehrs <doy@tozt.net>2012-03-05 00:36:07 -0600
commitf37b732fa2a9f4c4e31c602fb3309bc882400ab9 (patch)
tree1f3c7a1cf99b494ac39f8ac28d9ae041e3806418 /Changes
parent4e21bde42072a32e0a7cc515546ce9f13ecc8833 (diff)
downloadio-pty-easy-f37b732fa2a9f4c4e31c602fb3309bc882400ab9.tar.gz
io-pty-easy-f37b732fa2a9f4c4e31c602fb3309bc882400ab9.zip
cleanups, dzil stuff, etc
Diffstat (limited to 'Changes')
-rw-r--r--Changes18
1 files changed, 10 insertions, 8 deletions
diff --git a/Changes b/Changes
index 711c55f..95f676f 100644
--- a/Changes
+++ b/Changes
@@ -1,10 +1,12 @@
Revision history for IO-Pty-Easy
-0.08 10/10/2009
+{{$NEXT}}
+
+0.08 2009-10-10
- Fixed some circular references, should fix global destruction issues
(reported by kbrint, RT#50373)
-0.07 07/07/2009
+0.07 2009-07-07
- Add a constructor option 'raw' (default true) to configure whether the
pty should be set to raw mode on spawn.
- Don't ever automatically set the master side of the pty to raw, since
@@ -12,7 +14,7 @@ Revision history for IO-Pty-Easy
anything?)
- Build system changed to Dist::Zilla
-0.06 07/06/2009
+0.06 2009-07-06
- Localize $@ and $? in the destructor
- Convert the module to use the actual pty object as the class instance,
rather than hiding it away in the hashref - now things like fileno($pty)
@@ -20,26 +22,26 @@ Revision history for IO-Pty-Easy
you have been digging around in the hash prior to this.
- Add a few accessors for the object state
-0.05 02/04/2009
+0.05 2009-02-04
- Fix read() returning undef on timeout
-0.04 02/03/2009
+0.04 2009-02-03
- 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
+0.03 2007-08-20
- Make sure stdin/out are connected to a tty before trying to clone winsize
from them
- Fix the subprocess test so that it waits for the read before the
subprocess dies
-0.02 08/17/2007
+0.02 2007-08-17
- 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
+0.01 2007-08-17
- Initial release