Revision history for Perl extension Net::SSH::Expect.

0.08 2007/07/09
	- fixed the RemotePromptUnavailable in the connect() method using a fix in the prompt pattern
	The fix was found sent by titetluc@gmail.com, thanks.
	- added the "collect exit code" feature.
	- added the last_exit_code() and the collect_exit_code() methods.
	- added the collect_exit_code and collected_exit_code attributes.

0.07 2007/07/06
	- fixed the bug to set the remote prompt in the connect() method by putting the pattern
	[\s\S]+ in the expect that swallows the remote prompt
		while ($ssh->expect($timeout, '-re', qr/[\s\S]+/s)){
				# First we swallow any output the SSH server put on the tty after the logon. This is
				# usually the original remote prompt that we want to substitute.
		}

	- added the new constructor options that configure the Expect object:
	exp_internal debug

	- removed the 'verbose' attribute replacing it by two more specific attributes
	verbose_ssh and log_stdout

0.01  Tue Jun 26 15:27:49 2007
	- original version; created by h2xs 1.23 with options
		-XA -n Net::SSH::Expect