Skip to content

Commit 6f344ed

Browse files
authored
Merge pull request #190 from ARMmbed/prep-version-0.0.9
Prep version 0.0.9
2 parents aef119e + 208fb5c commit 6f344ed

File tree

4 files changed

+41
-25
lines changed

4 files changed

+41
-25
lines changed

packages/mbed-greentea/setup.py

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"""
77
mbed SDK
8-
Copyright (c) 2011-2015 ARM Limited
8+
Copyright (c) 2011-2019 ARM Limited
99
1010
Licensed under the Apache License, Version 2.0 (the "License");
1111
you may not use this file except in compliance with the License.
@@ -29,15 +29,21 @@
2929

3030

3131
DESCRIPTION = "mbed 3.0 onwards test suite, codename Greentea. The test suite is a collection of tools that enable automated testing on mbed-enabled platforms"
32-
OWNER_NAMES = 'Anna Bridge, Azim Khan'
33-
32+
OWNER_NAMES = 'Anna Bridge, Qinghao Shi'
33+
34+
3435

35-
# Utility function to cat in a file (used for the README)
3636
def read(fname):
37+
"""
38+
Utility function to cat in a file (used for the README)
39+
@param fname: the name of the file to read, relative to the directory containing this file
40+
@return: The string content of the opened file
41+
"""
3742
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf-8").read()
3843

44+
3945
setup(name='mbed-greentea',
40-
version='1.7.1',
46+
version='1.7.2',
4147
description=DESCRIPTION,
4248
long_description=read('README.md'),
4349
author=OWNER_NAMES,
@@ -47,15 +53,15 @@ def read(fname):
4753
url='https://github.com/ARMmbed/mbed-os-tools',
4854
packages=find_packages(),
4955
license="Apache-2.0",
50-
test_suite = 'test',
56+
test_suite='test',
5157
entry_points={
5258
"console_scripts": ["mbedgt=mbed_greentea.mbed_greentea_cli:main",],
5359
},
5460
install_requires=[
55-
"mbed-os-tools==0.0.8",
61+
"mbed-os-tools==0.0.9",
5662
"mbed-host-tests>=1.5.0,<2"
5763
],
58-
tests_require = [
64+
tests_require=[
5965
"mock>=2"
6066
]
6167
)

packages/mbed-host-tests/setup.py

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"""
77
mbed SDK
8-
Copyright (c) 2011-2016 ARM Limited
8+
Copyright (c) 2011-2019 ARM Limited
99
1010
Licensed under the Apache License, Version 2.0 (the "License");
1111
you may not use this file except in compliance with the License.
@@ -28,16 +28,21 @@
2828
from setuptools import find_packages
2929

3030
DESCRIPTION = "mbed tools used to flash, reset and supervise test execution for mbed-enabled devices"
31-
OWNER_NAMES = 'Jimmy Brisson, Brian Daniels'
32-
OWNER_EMAILS = '[email protected], Brian.Daniels@arm.com'
31+
OWNER_NAMES = 'Qinghao Shi'
32+
OWNER_EMAILS = 'qinghao.shi@arm.com'
3333

3434

35-
# Utility function to cat in a file (used for the README)
3635
def read(fname):
36+
"""
37+
Utility function to cat in a file (used for the README)
38+
@param fname: the name of the file to read, relative to the directory containing this file
39+
@return: The string content of the opened file
40+
"""
3741
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read()
3842

43+
3944
setup(name='mbed-host-tests',
40-
version='1.5.7',
45+
version='1.5.8',
4146
description=DESCRIPTION,
4247
long_description=read('README.md'),
4348
long_description_content_type='text/markdown',
@@ -48,14 +53,14 @@ def read(fname):
4853
url='https://github.com/ARMmbed/mbed-os-tools',
4954
packages=find_packages(),
5055
license="Apache-2.0",
51-
test_suite = 'test',
56+
test_suite='test',
5257
entry_points={
5358
"console_scripts":
5459
["mbedhtrun=mbed_host_tests.mbedhtrun:main",
5560
"mbedflsh=mbed_host_tests.mbedflsh:main"],
5661
},
5762
install_requires=[
58-
"mbed-os-tools==0.0.8"
63+
"mbed-os-tools==0.0.9"
5964
],
6065
tests_require=[
6166
"mock>=2"

packages/mbed-ls/setup.py

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"""
77
mbed SDK
8-
Copyright (c) 2011-2018 ARM Limited
8+
Copyright (c) 2011-2019 ARM Limited
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.
1111
You may obtain a copy of the License at
@@ -25,16 +25,21 @@
2525
from setuptools import find_packages
2626

2727
DESCRIPTION = "mbed-ls is a Python module that detects and lists mbed-enabled devices connected to the host computer"
28-
OWNER_NAMES = 'Jimmy Brisson, Brian Daniels'
29-
OWNER_EMAILS = 'jimmy.brisson@arm.com, brian.daniels@arm.com'
28+
OWNER_NAMES = 'Graham Hammond, Mark Edgeworth'
29+
OWNER_EMAILS = 'Graham.Hammond@arm.com, Mark.Edgeworth@arm.com'
3030

3131

32-
# Utility function to cat in a file (used for the README)
3332
def read(fname):
33+
"""
34+
Utility function to cat in a file (used for the README)
35+
@param fname: the name of the file to read, relative to the directory containing this file
36+
@return: The string content of the opened file
37+
"""
3438
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read()
3539

40+
3641
setup(name='mbed-ls',
37-
version='1.7.7',
42+
version='1.7.8',
3843
description=DESCRIPTION,
3944
long_description=read('README.md'),
4045
author=OWNER_NAMES,
@@ -44,21 +49,21 @@ def read(fname):
4449
url='https://github.com/ARMmbed/mbed-os-tools',
4550
packages=find_packages(),
4651
license="Apache-2.0",
47-
test_suite = 'test',
52+
test_suite='test',
4853
entry_points={
4954
"console_scripts": [
5055
"mbedls=mbed_lstools:mbedls_main",
5156
],
5257
},
5358
install_requires=[
5459
"PrettyTable>=0.7.2",
55-
"mbed-os-tools==0.0.8"
60+
"mbed-os-tools==0.0.9"
5661
],
57-
tests_require = [
62+
tests_require=[
5863
"mock>=2",
5964
"pytest>=3"
6065
],
61-
extras_require = {
66+
extras_require={
6267
"colorized_logs": ["colorlog"]
6368
}
6469
)

src/mbed_os_tools/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.8
1+
0.0.9

0 commit comments

Comments
 (0)