From 631c84278d72d098b3ab2bee2014cca48bd0d12f Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Wed, 12 Sep 2018 11:15:07 -0500 Subject: [PATCH] Release v1.8.1 **Fixed:** * Concurrent Mbed CLI deploys that access the same cached repo no longer cause cache corruption. * Python dependencies using a github url and release instead of a package name and version are checked correctly and no longer cause sperious pip installs. * `mbed test --unittest` no longer requires a target and toolchain, which it simply throws away. --- 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 ca56971b..ec081b78 100755 --- a/mbed/mbed.py +++ b/mbed/mbed.py @@ -51,7 +51,7 @@ # Application version -ver = '1.8.0' +ver = '1.8.1' # Default paths to Mercurial and Git hg_cmd = 'hg' diff --git a/setup.py b/setup.py index cbf963ab..4a63583e 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name="mbed-cli", - version="1.8.0", + version="1.8.1", description="Arm Mbed command line tool for repositories version control, publishing and updating code from remotely hosted repositories (GitHub, GitLab and mbed.com), and invoking Mbed OS own build system and export functions, among other operations", long_description=long_description, long_description_content_type="text/markdown",