Changes between the last two releases (major or minor)
Note that this is an auto-generated diff of the ChangeLogs

2005-03-02  *** Released version 0.6.12

2005-03-02  Fernando Perez  <fperez@colorado.edu>

	* IPython/iplib.py (handle_magic): log magic calls properly as
	ipmagic() function calls.

	* IPython/Magic.py (magic_time): Improved %time to support
	statements and provide wall-clock as well as CPU time.

2005-02-27  Fernando Perez  <fperez@colorado.edu>

	* IPython/hooks.py: New hooks module, to expose user-modifiable
	IPython functionality in a clean manner.  For now only the editor
	hook is actually written, and other thigns which I intend to turn
	into proper hooks aren't yet there.  The display and prefilter
	stuff, for example, should be hooks.  But at least now the
	framework is in place, and the rest can be moved here with more
	time later.  IPython had had a .hooks variable for a long time for
	this purpose, but I'd never actually used it for anything.

2005-02-26  Fernando Perez  <fperez@colorado.edu>

	* IPython/ipmaker.py (make_IPython): make the default ipython
	directory be called _ipython under win32, to follow more the
	naming peculiarities of that platform (where buggy software like
	Visual Sourcesafe breaks with .named directories).  Reported by
	Ville Vainio.

2005-02-23  Fernando Perez  <fperez@colorado.edu>

	* IPython/iplib.py (InteractiveShell.__init__): removed a few
	auto_aliases for win32 which were causing problems.  Users can
	define the ones they personally like.

2005-02-21  Fernando Perez  <fperez@colorado.edu>

	* IPython/Magic.py (magic_time): new magic to time execution of
	expressions.  After a request by Charles Moad <cmoad@indiana.edu>.

2005-02-19  Fernando Perez  <fperez@colorado.edu>

	* IPython/ConfigLoader.py (ConfigLoader.load): Allow empty strings
	into keys (for prompts, for example).

	* IPython/Prompts.py (BasePrompt.set_p_str): Fix to allow empty
	prompts in case users want them.  This introduces a small behavior
	change: ipython does not automatically add a space to all prompts
	anymore.  To get the old prompts with a space, users should add it
	manually to their ipythonrc file, so for example prompt_in1 should
	now read 'In [\#]: ' instead of 'In [\#]:'.
	(BasePrompt.__init__): New option prompts_pad_left (only in rc
	file) to control left-padding of secondary prompts.

	* IPython/Magic.py (Magic.profile_missing_notice): Don't crash if
	the profiler can't be imported.  Fix for Debian, which removed
	profile.py because of License issues.  I applied a slightly
	modified version of the original Debian patch at
	http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=294500.

2005-02-17  Fernando Perez  <fperez@colorado.edu>

	* IPython/genutils.py (native_line_ends): Fix bug which would
	cause improper line-ends under win32 b/c I was not opening files
	in binary mode.  Bug report and fix thanks to Ville.

	* IPython/iplib.py (handle_auto): Fix bug which I introduced when
	trying to catch spurious foo[1] autocalls.  My fix actually broke
	',/' autoquote/call with explicit escape (bad regexp).

