The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
0.2: Test added.
0.3: Filehandles changed to \* from *, MinLine works, works with
debugger.
0.4: Some bugs with $| corrected. Application name is set. Works under
OS/2 without ReadKey. Should work under DOS with minimal changes (see
$inDOS in ReadLine/readline.pl).
0.5: Code to support ReadLine'less debugger moved to debugger. One
user reported that having .inputrc triggers the same bug that buggered
earlier versions of the package. Request for a second readline is
tried to be executed first, dying only if should work on a different terminal.
0.6: The above bug was due to missing vi keymap. Dirty workaround
added.
0.7: We made ReadMode on term_OUT ;-(
     Better workaround for return of globs from a sub.
     Word break chars more suitable for Perl.
0.8: Insert, Operate, HistorySearch added.
     Rudimental support for tk being active during ReadLine.
     Should work better if ReadKey is present, but did not bootstrap.
     SelfLoader (and AutoLoader) supported (uncomment the lines
	with SelfLoader, ISA, and __DATA__).
0.9: tkRunning corrected. New attributes in Features: getHistory,
	setHistory, and new methods: GetHistory and SetHistory.

After 0.9:
	Optional second argument to ->readline;
	[sg]etHistory, tkRunning features documented;
	Operate overwriting parameter fixed;
	AddHistory copied to addhistory in T::R::Perl;
	[SG]etHistory documented;
	tkRunning feature documented.
	eval "" => eval {}
	local => my
After 0.91:
	Couple of bugs with my $var = @_;
	use SelfLoader; moved to DATA.
	Works in XTERM on OS/2.
0.93:
	Updates to Operate, couple of keybindings added.
	$rl_completer_terminator_character, $rl_correct_sw added.
	Reload-init-file moved to C-x C-x.
	C-x ? and C-x * list/insert possible completions (similar to
		tcsh globbing).
	For a second ReadLine interface ReadLine::Stub is used (unsuccessfully)?
	C-x * moves cursor correctly.
0.94:
	Should work everywhere where stty works (possibly with a warning).
	Warning says where to find TRK, switchable off.
	ReadLine.pm removed from distribution.
0.95:
		(from Jim Meyering):
	* readline.pm (preinit): Recognize bash's `input-meta' as a
	valid variable name.
	(F_ReReadInitFile): Recognize key binding directives in which
	the double-quoted RHS contains white space.
	(rl_set): Treat bash's `visible-stats' as a synonym of
	CompleteAddsuffix.
	Workaround against Term::ReadKey::ReadMode returning undef
		(thanks to Helmut Jarausch).
0.96:
	tkRunning support unrolled, now needs newer Term/ReadLine.pm to use it.
	Warnings from inputrc come only if -w.
0.97:
	Wrong version of Perl.pm was included, did not work with older Perls.
0.98:
	newTTY added.
	ornaments added.
	no longer installs into PERL dirs.
	Name of interface is now Term::ReadLine::Perl.
	Meta-flag tolerated (thanks to Honza Pazdziora).
	Bindings to \C-letter work again.
0.99:
	Buglet with -w corrected.
0.9901:
	Support for ornaments busted editing of long lines.
0.9902:
	Do not test TRL::Gnu in test.pl!
	Allow control-? in assignments.  \M-\C- should work, as well as \x7F.
	(Thanks to Neil Bird!)
0.9903:
	Enable ornaments by default.
	Disable explicit ornaments in the test.pl.
0.9904: (thanks to Alexander Kourakos <awk@bnt.com>)
        gave warnings for blank lines in my .inputrc
        showed underlined spaces in prompts (in xterm) which look ugly.
0.9905: (thanks to Wilson P. Snyder II wsnyder@maker.com)
	Fix reverse search.
0.9906: $readline::rl_getc added with the default value \&readline::rl_getc
0.9907: remove defined() noise.
0.9908: support $ENV{INPUTRC}.
	Advice users to look into *this* file for features...
	Joe.Petolino@Eng.Sun.COM added vi support (untested).
	Remove .gz-ness from Makefile.PL.
1.00:	Ignore $/, $\, $,.
	Handle $include in RC file (by Roland Walker and Alexander Kourakos).
	Support "unsupported ioctl()".
	$rl_vi_replace_default_on_insert (by Russ Southern).
	Now we closely match the new syntax of .inputrc (by David Wollmann).
	Allow setenv PERL_RL_USE_TRK=0 to disable usage of Term::ReadKey.
	With $inDOS vicmd_map had conflicting definitions for #27.
	Removed spurious warnings from failing ioctl and stty.
1.01:	Allow unset TERM.
	Wrong display and warnings if UP/DOWN reach a short line from a
		scrolled line
	Highlight the h-scroll indicators "<" ">" same as the prompt.
	Draw h-scroll indicator "<" even if a part of the prompt is shown.
	Scroll right if more than $rl_margin empty space is on the right.
1.02:	Move reread-init to C-x C-r.  Make C-x u and C-x C-u do undo.
	Set-mark:			C-@, Control-Space on PC.
	Exchange-point-and-mark:	C-x C-x.
	Kill-region:			C-x C-w (as in lynx).
	Copy-region-as-kill:		C-x w   (kinda similar to Emacs).
	On PC, the last 2 and yank also available on Shift-Del, Control-Insert,
		Shift-Insert.
	Kill buffer is prepended or appended in natural manner.
	Disable detection of Japanese multibyte characters - conflicts with
		single-byte scripts.  Reenable by $readline::_rl_japanese_mb = 1.
1.0201:	Warnings due to a misprint fixed (thanks to Tatsuhiko Miyagawa).
1.0202:	Warnings on highlight of the right scroll mark '<' fixed
	(thanks to Slaven Rezic).
1.0203:	Unconditional titlecasing of .inputrc "values" broke settings with
	values such as 'vi' etc (thanks to Russ Southern for a report).