Merge branch 'version-0.1.0' into 'master'

0.1.0 and 0.1.1

See merge request micro-ROS/ros_tracing/tracetools_analysis!10
This commit is contained in:
Christophe Bedard 2019-07-16 10:36:55 +00:00
commit 14de268597
3 changed files with 24 additions and 7 deletions

View file

@ -0,0 +1,13 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package tracetools_analysis
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.1.1 (2019-07-16)
------------------
* Update metadata
* Contributors: Christophe Bedard
0.1.0 (2019-07-11)
------------------
* Add analysis tools
* Contributors: Christophe Bedard, Ingo Lütkebohle

View file

@ -2,12 +2,12 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> <?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="2"> <package format="2">
<name>tracetools_analysis</name> <name>tracetools_analysis</name>
<version>0.1.0</version> <version>0.1.1</version>
<description>Tools for analysing trace data</description> <description>Tools for analysing trace data.</description>
<maintainer email="fixed-term.christophe.bourquebedard@de.bosch.com">Christophe Bedard</maintainer> <maintainer email="fixed-term.christophe.bourquebedard@de.bosch.com">Christophe Bedard</maintainer>
<maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Lütkebohle</maintainer> <maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Lütkebohle</maintainer>
<license>Apache 2.0</license> <license>Apache 2.0</license>
<author email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</author> <author email="ingo.luetkebohle@de.bosch.com">Ingo Lütkebohle</author>
<author email="fixed-term.christophe.bourquebedard@de.bosch.com">Christophe Bedard</author> <author email="fixed-term.christophe.bourquebedard@de.bosch.com">Christophe Bedard</author>
<exec_depend>tracetools_read</exec_depend> <exec_depend>tracetools_read</exec_depend>

View file

@ -5,7 +5,7 @@ package_name = 'tracetools_analysis'
setup( setup(
name=package_name, name=package_name,
version='0.1.0', version='0.1.1',
packages=find_packages(exclude=['test']), packages=find_packages(exclude=['test']),
data_files=[ data_files=[
('share/' + package_name, ['package.xml']), ('share/' + package_name, ['package.xml']),
@ -27,9 +27,13 @@ setup(
'fixed-term.christophe.bourquebedard@de.bosch.com, ' 'fixed-term.christophe.bourquebedard@de.bosch.com, '
'ingo.luetkebohle@de.bosch.com' 'ingo.luetkebohle@de.bosch.com'
), ),
# url='', url='https://gitlab.com/micro-ROS/ros_tracing/tracetools_analysis',
keywords=['ROS'], keywords=[],
description='Tools for analysing trace data', description='Tools for analysing trace data.',
long_description=(
'This package provides tools for analysing trace data, from '
'building a model of the trace data to providing plotting utilities.'
),
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
f'convert = {package_name}.convert:main', f'convert = {package_name}.convert:main',