Bump version

This commit is contained in:
Andreas Kloeckner 2013-08-17 14:55:05 -05:00
parent 6bb3a32bfe
commit 3b901ae0f2
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,4 @@
NUM_VERSION = (2013, 3, 4)
NUM_VERSION = (2013, 3, 5)
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
__version__ = VERSION

View File

@ -1413,7 +1413,7 @@ class DebuggerUI(FrameVarInfoKeeper):
self.message("Package 'pygments' not found. "
"Syntax highlighting disabled.")
WELCOME_LEVEL = "e014"
WELCOME_LEVEL = "e015"
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
CONFIG["seen_welcome"] = WELCOME_LEVEL
from pudb import VERSION
@ -1430,6 +1430,11 @@ class DebuggerUI(FrameVarInfoKeeper):
"(invoked by hitting '?' after this message) should get you "
"on your way.\n"
"\nChanges in version 2013.3.5:\n\n"
"- IPython fixes (Aaron Meurer)\n"
"- Py2/3 configuration fixes (Somchai Smythe)\n"
"- PyPy fixes (Julian Berman)\n"
"\nChanges in version 2013.3.4:\n\n"
"- Don't die if curses doesn't like what stdin/out are\n"
" connected to.\n"