From f35d9524ab2c966e21a86e68b7b8672affddb6dc 2008-06-11 22:14:56 From: Brian E Granger Date: 2008-06-11 22:14:56 Subject: [PATCH] Updating Release.py to get ready for a 0.9 release. The release is a ways off, but I want to get us thinking towards it. --- diff --git a/IPython/Release.py b/IPython/Release.py index cc62c70..f46c4a5 100644 --- a/IPython/Release.py +++ b/IPython/Release.py @@ -22,15 +22,15 @@ name = 'ipython' # because bdist_rpm does not accept dashes (an RPM) convention, and # bdist_deb does not accept underscores (a Debian convention). -revision = '128' +revision = '1016' branch = 'ipython' if branch == 'ipython': - version = '0.8.4.bzr.r' + revision + version = '0.9.0.bzr.r' + revision else: - version = '0.8.4.bzr.r%s.%s' % (revision,branch) + version = '0.9.0.bzr.r%s.%s' % (revision,branch) -version = '0.8.4' +# version = '0.8.4' description = "Tools for interactive development in Python."