From afd9d18e4f8cb9a3a706d494c953a5b00130cad9 2006-12-07 19:17:19 From: vivainio Date: 2006-12-07 19:17:19 Subject: [PATCH] update changelog --- diff --git a/IPython/Release.py b/IPython/Release.py index 03c959f..dbeda5f 100644 --- a/IPython/Release.py +++ b/IPython/Release.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Release data for the IPython project. -$Id: Release.py 1969 2006-12-07 18:17:05Z vivainio $""" +$Id: Release.py 1971 2006-12-07 19:17:19Z vivainio $""" #***************************************************************************** # Copyright (C) 2001-2006 Fernando Perez @@ -22,7 +22,7 @@ name = 'ipython' # because bdist_rpm does not accept dashes (an RPM) convention, and # bdist_deb does not accept underscores (a Debian convention). -revision = '1968' +revision = '1970M' #version = '0.7.3.svn' diff --git a/doc/ChangeLog b/doc/ChangeLog index 9b50800..cbc82d9 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,4 +1,18 @@ -2006-12-5 Ville Vainio +2006-12-07 Ville Vainio + + * Extensions/ipy_signals.py: Ignore ctrl+C in IPython process + while executing external code. Provides more shell-like behaviour + and overall better response to ctrl + C / ctrl + break. + + * tools/make_tarball.py: new script to create tarball straight from svn + (setup.py sdist doesn't work on win32). + + * Extensions/ipy_stock_completers.py: fix cd completer to give up + on dirnames with spaces and use the default completer instead. + + * Revision.py: Change version to 0.7.3b2 for release. + +2006-12-05 Ville Vainio * Magic.py, iplib.py, completer.py: Apply R. Bernstein's pydb patch 4 (rm debug printing, py 2.5 checking)