File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3535
3636
3737# Application version
38- ver = '0.8.1 '
38+ ver = '0.8.2 '
3939
4040# Default paths to Mercurial and Git
4141hg_cmd = 'hg'
9494# reference to local (unpublished) repo - dir#rev
9595regex_local_ref = r'^([\w.+-][\w./+-]*?)/?(?:#(.*))?$'
9696# reference to repo - url#rev
97- regex_url_ref = r'^(.*/([\w+-]+)(?:\.\w+)?)/?(?:#(.*))?$'
97+ regex_url_ref = r'^(.*/([\w. +-]+)(?:\.\w+)?)/?(?:#(.*))?$'
9898
9999# git url (no #rev)
100100regex_git_url = r'^(git@|git\://|ssh\://|https?\://)([^/:]+)[:/](.+?)(\.git|\/?)$'
103103
104104# mbed url is subset of hg. mbed doesn't support ssh transport
105105regex_mbed_url = r'^(https?)://([\w\-\.]*mbed\.(co\.uk|org|com))/(users|teams)/([\w\-]{1,32})/(repos|code)/([\w\-]+)/?$'
106+ # mbed sdk builds url
106107regex_build_url = r'^(https?://([\w\-\.]*mbed\.(co\.uk|org|com))/(users|teams)/([\w\-]{1,32})/(repos|code)/([\w\-]+))/builds/?([\w\-]{6,40}|tip)?/?$'
107108
108109# base url for all mbed related repos (used as sort of index)
@@ -1184,6 +1185,7 @@ def get_requirements(self):
11841185 mbed_os_path = self .get_os_dir ()
11851186 if mbed_os_path :
11861187 paths .append ([mbed_os_path ])
1188+ paths .append ([mbed_os_path , 'core' ])
11871189 # mbed-os not identified but tools found under cwd/tools
11881190 paths .append ([self .path , 'core' ])
11891191 # mbed Classic deployed tools
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def read(fname):
1919setup (
2020 name = "mbed-cli" ,
2121 packages = ["mbed" ],
22- version = "0.8.1 " ,
22+ version = "0.8.2 " ,
2323 url = 'http://github.com/ARMmbed/mbed-cli' ,
2424 author = 'ARM mbed' ,
2525 author_email = 'support@mbed.org' ,
You can’t perform that action at this time.
0 commit comments