Skip to content

Commit 19fcca9

Browse files
committed
Polish help and PyPI description
1 parent fbb4c3b commit 19fcca9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

mbed/mbed.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636

3737
# Application version
38-
ver = '0.6.5'
38+
ver = '0.6.8'
3939

4040
# Default paths to Mercurial and Git
4141
hg_cmd = 'hg'
@@ -1856,7 +1856,7 @@ def status_(ignore=False):
18561856
dict(name='--build', help='Build directory. Default: .build/'),
18571857
dict(name=['-c', '--clean'], action='store_true', help='Clean the build directory before compiling'),
18581858
dict(name=['-S', '--supported'], dest='supported', action='store_true', help='Shows supported matrix of targets and toolchains'),
1859-
help='Compile this program using the mbed build tools',
1859+
help='Compile code using the mbed build tools',
18601860
description=("Compile this program using the mbed build tools."))
18611861
def compile(toolchain=None, mcu=None, source=False, build=False, compile_library=False, compile_config=False, config_prefix=None, compile_tests=False, clean=False, supported=False):
18621862
# Gather remaining arguments
@@ -1939,7 +1939,8 @@ def compile(toolchain=None, mcu=None, source=False, build=False, compile_library
19391939
dict(name='--build', help='Build directory. Default: .build/'),
19401940
dict(name=['-c', '--clean'], action='store_true', help='Clean the build directory before compiling'),
19411941
dict(name='--test-spec', dest="test_spec", help="Destination path for the test spec file used when running tests (only override if a test spec file that can be used by the Greentea automated test tool. The default is placed in the build directory"),
1942-
help='Find, build, and run tests in a program and its libraries')
1942+
help='Find, build and run tests',
1943+
description=("Find, build, and run tests in a program and libraries"))
19431944
def test_(toolchain=None, mcu=None, list_compile=False, list_run=False, compile_only=False, run_only=False, tests_by_name=None, source=False, build=False, clean=False, test_spec=None):
19441945
# Gather remaining arguments
19451946
args = remainder

pypi_readme.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
.. image:: https://travis-ci.org/ARMmbed/mbed-cli.svg
21
.. image:: https://circleci.com/gh/ARMmbed/mbed-cli.svg?style=svg
32

4-
mbed is a command-line tool for `ARM-mbed <https://mbed.org>`_. It enables workflows with ARM mbed repositories and maintaining dependencies, code publishing and updating from remotely hosted repositories (GitHub, GitLab, mbed.org), as well as invoking mbed's own build system and export functions, and other operations.
3+
mbed CLI is the name of the `ARM-mbed <https://mbed.org>`_ command line tool, packaged as mbed-cli, which enables the full mbed workflow: repositories version control, maintaining dependencies, publishing code, updating from remotely hosted repositories (GitHub, GitLab and mbed.org), and invoking ARM mbed's own build system and export functions, among other operations.
54

65

76
Installation
87
============
9-
mbed is a Python script, so you'll need Python installed in order to use it. mbed was tested with version 2.7 of Python.
8+
mbed CLI is a Python script, so you'll need Python installed in order to use it. mbed CLI was tested with Python 2.7.
109

11-
mbed supports both Git and Mercurial repositories, so you'll also need to install Mercurial and Git.
10+
mbed CLI supports both Git and Mercurial repositories, so you'll also need to install Mercurial and Git.
1211

1312
Get Started
1413
===========
1514
The best way to get started is to `read the documentation on GitHub <https://github.com/ARMmbed/mbed-cli/blob/master/README.md>`_.
1615

1716
License
1817
=======
19-
mbed is licensed under Apache-2.0
18+
mbed CLI is licensed under Apache-2.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def read(fname):
1919
setup(
2020
name="mbed-cli",
2121
packages=["mbed"],
22-
version="0.6.5",
22+
version="0.6.8",
2323
url='http://github.com/ARMmbed/mbed-cli',
2424
author='ARM mbed',
2525
author_email='[email protected]',

0 commit comments

Comments
 (0)