Skip to content

Commit

Permalink
Bump version to 4.2-rc1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Katharine committed Feb 26, 2016
1 parent 780cf98 commit 9ffcd75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pebble_tool/commands/sdk/project/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


class GdbCommand(PebbleCommand):
"""Connects a debugger to the current app."""
"""Connects a debugger to the current app. Only works in the emulator."""
command = 'gdb'
valid_connections = {'emulator'}

Expand Down Expand Up @@ -73,6 +73,7 @@ def __call__(self, args):
"break app_crashed", # app crashes (as of FW 3.10) go through this symbol for our convenience.
'echo \nPress ctrl-D or type \'quit\' to exit.\n',
'echo Try `pebble gdb --help` for a short cheat sheet.\n'
'echo Note that the emulator does not yet crash on memory access violations.\n'
]

gdb_args = ['arm-none-eabi-gdb', fw_elf, '-q'] + ['--ex={}'.format(x) for x in gdb_commands]
Expand Down
4 changes: 2 additions & 2 deletions pebble_tool/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version_base = (4, 1, 1)
version_suffix = None
version_base = (4, 2, 0)
version_suffix = 'rc1'

if version_suffix is None:
__version_info__ = version_base
Expand Down

0 comments on commit 9ffcd75

Please sign in to comment.