Skip to content

Commit 9ffcd75

Browse files
committed
Bump version to 4.2-rc1.
1 parent 780cf98 commit 9ffcd75

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pebble_tool/commands/sdk/project/debug.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
class GdbCommand(PebbleCommand):
15-
"""Connects a debugger to the current app."""
15+
"""Connects a debugger to the current app. Only works in the emulator."""
1616
command = 'gdb'
1717
valid_connections = {'emulator'}
1818

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

7879
gdb_args = ['arm-none-eabi-gdb', fw_elf, '-q'] + ['--ex={}'.format(x) for x in gdb_commands]

pebble_tool/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version_base = (4, 1, 1)
2-
version_suffix = None
1+
version_base = (4, 2, 0)
2+
version_suffix = 'rc1'
33

44
if version_suffix is None:
55
__version_info__ = version_base

0 commit comments

Comments
 (0)