From 96b4d5eaf2eb2fdbcd746435f4cfe02b150d6a38 Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Fri, 22 Mar 2019 14:28:31 -0500 Subject: [PATCH] Release v1.10.0 ## Fixes * #870 Use input() instead of raw_input() for py3 * #874 Add decode call to icetea application list output ## New features * #873 allow tag to be used in mbed import --- 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 2611b241..9f2a32e4 100755 --- a/mbed/mbed.py +++ b/mbed/mbed.py @@ -53,7 +53,7 @@ # Application version -ver = '1.9.2' +ver = '1.10.0' # Default paths to Mercurial and Git hg_cmd = 'hg' diff --git a/setup.py b/setup.py index 3e22fd7b..05698c3e 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name="mbed-cli", - version="1.9.2", + version="1.10.0", 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",