Skip to content

Commit 9867a5a

Browse files
committed
Fixed version number and output message
1 parent d70e46d commit 9867a5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mbed/mbed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Default paths to Mercurial and Git
2020
hg_cmd = 'hg'
2121
git_cmd = 'git'
22-
ver = '0.4.1'
22+
ver = '0.5.0'
2323

2424
ignores = [
2525
# Version control folders
@@ -1198,7 +1198,7 @@ def add_tools(self, path):
11981198
def get_tools(self):
11991199
mbed_tools_path = self.get_tools_dir()
12001200
if not mbed_tools_path:
1201-
error('The mbed_tools_pathd in "%s". \n Run `mbed deploy` to install dependencies and tools. ' % self.path, -1)
1201+
error('The mbed tools were not found in "%s". \n Run `mbed deploy` to install dependencies and tools. ' % self.path, -1)
12021202
return mbed_tools_path
12031203

12041204
def get_mcu(self, mcu=None):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def read(fname):
1111
setup(
1212
name="mbed-cli",
1313
packages=["mbed"],
14-
version="0.4.0",
14+
version="0.5.0",
1515
url='http://github.com/ARMmbed/mbed-cli',
1616
author='ARM mbed',
1717
author_email='[email protected]',

0 commit comments

Comments
 (0)