From 3fcb0e7a7bf41010b84c20d1e16e34c32ee651a2 Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Mon, 9 Nov 2020 09:52:05 +0000 Subject: [PATCH 1/3] Don't require too old mbed-os-tools mbed-os-tools 1.8.0 is as compatible with 0.0.9 as 0.0.15 was. Remove the "not greater than" bound on the mbed-os-tools version. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6da09aeb..814f07d7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ pyserial>=3.0,<4.0 -mbed-os-tools>=0.0.9,<0.1.0 +mbed-os-tools>=0.0.9 From f59b7d11ee252de34c7f27c56a0f519cd3190058 Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Mon, 9 Nov 2020 12:03:16 +0000 Subject: [PATCH 2/3] Update path to generic driver tests After the recent Mbed OS folder restructuring, the CI for Mbed CLI fails as the CI scripts contain hard-coded paths to locate the generic driver tests. Update the CI scripts with the new path, so that CI has a chance to pass with new versions of Mbed OS. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d06624b1..30f1c051 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,7 +72,7 @@ commands: command: | echo $PATH ls -l /opt/gcc-arm-none-eabi-5_3-2016q1/bin - mbed compile --source=. --source=mbed-os/TESTS/mbed_drivers/generic_tests -j 0 + mbed compile --source=. --source=mbed-os/drivers/tests/TESTS/mbed_drivers/generic_tests -j 0 mbed test --compile -n mbed-os-tests-mbed_drivers-generic_tests -j 0 run_old_support_tests: steps: From 7a3f7dbc84f17af744f0b91976b9969148053568 Mon Sep 17 00:00:00 2001 From: Jaeden Amero Date: Mon, 9 Nov 2020 09:56:45 +0000 Subject: [PATCH 3/3] Bump version --- mbed/mbed.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mbed/mbed.py b/mbed/mbed.py index eaca1a99..bb1e9fd7 100755 --- a/mbed/mbed.py +++ b/mbed/mbed.py @@ -53,7 +53,7 @@ # Application version -ver = '1.10.4' +ver = '1.10.5' # Default paths to Mercurial and Git hg_cmd = 'hg' diff --git a/setup.py b/setup.py index 08814313..ea5f9a13 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from setuptools import find_packages NAME = 'mbed-cli' -__version__ = '1.10.4' +__version__ = '1.10.5' repository_dir = os.path.dirname(__file__)