Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Sep 2, 2017
1 parent 9d148d8 commit 6be804e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pudb/__init__.py
@@ -1,6 +1,6 @@
from __future__ import absolute_import, division, print_function

NUM_VERSION = (2017, 1, 3)
NUM_VERSION = (2017, 1, 4)
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
__version__ = VERSION

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

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

"\nChanges in version 2017.1.4:\n\n"
"- Bug fixes.\n"

"\nChanges in version 2017.1.3:\n\n"
"- Add handling of safely_stringify_for_pudb to allow custom \n"
" per-type stringification.\n"
Expand Down

0 comments on commit 6be804e

Please sign in to comment.