Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jun 7, 2016
1 parent d30e475 commit 564ab64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pudb/__init__.py
@@ -1,4 +1,4 @@
NUM_VERSION = (2016, 1)
NUM_VERSION = (2016, 2)
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
__version__ = VERSION

Expand Down
6 changes: 5 additions & 1 deletion pudb/debugger.py
Expand Up @@ -2095,7 +2095,7 @@ def event_loop(self, toplevel=None):
self.message("Package 'pygments' not found. "
"Syntax highlighting disabled.")

WELCOME_LEVEL = "e026" # noqa
WELCOME_LEVEL = "e027" # noqa
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
CONFIG["seen_welcome"] = WELCOME_LEVEL
from pudb import VERSION
Expand All @@ -2112,6 +2112,10 @@ def event_loop(self, toplevel=None):
"(invoked by hitting '?' after this message) should get you "
"on your way.\n"

"\nChanges in version 2016.2:\n\n"
"- UI improvements for disabled breakpoints.\n"
"- Bug fixes.\n"

"\nChanges in version 2016.1:\n\n"
"- Fix module browser on Py3.\n"

Expand Down

0 comments on commit 564ab64

Please sign in to comment.