Skip to content

Commit

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

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

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

"\nChanges in version 2015.2:\n\n"
"- ptpython support (P. Varet)\n"
"- Improved rxvt support (Louper Rouch)\n"
"- More keyboard shortcuts in the command line"
"(Alex Sheluchin)\n"

"\nChanges in version 2015.1:\n\n"
"- Add solarized theme (Rinat Shigapov)\n"
"- More keyboard shortcuts in the command line"
Expand Down

0 comments on commit 4207fb5

Please sign in to comment.