0.2.3
This commit is contained in:
parent
fadd8b4cd0
commit
6771aaf84b
14 changed files with 18 additions and 18 deletions
|
@ -2,7 +2,7 @@
|
||||||
<?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>ros2trace</name>
|
<name>ros2trace</name>
|
||||||
<version>0.2.2</version>
|
<version>0.2.3</version>
|
||||||
<description>The trace command for ROS 2 command line tools.</description>
|
<description>The trace command for ROS 2 command line tools.</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>
|
||||||
|
|
|
@ -3,7 +3,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='ros2trace',
|
name='ros2trace',
|
||||||
version='0.2.2',
|
version='0.2.3',
|
||||||
packages=find_packages(exclude=['test']),
|
packages=find_packages(exclude=['test']),
|
||||||
install_requires=['ros2cli'],
|
install_requires=['ros2cli'],
|
||||||
zip_safe=True,
|
zip_safe=True,
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
Changelog for package tracetools
|
Changelog for package tracetools
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Forthcoming
|
0.2.3 (2019-08-05)
|
||||||
-----------
|
------------------
|
||||||
* Fix Windows warnings
|
* Fix Windows warnings
|
||||||
* Contributors: Christophe Bedard, Ingo Lütkebohle
|
* Contributors: Christophe Bedard, Ingo Lütkebohle
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<?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</name>
|
<name>tracetools</name>
|
||||||
<version>0.2.2</version>
|
<version>0.2.3</version>
|
||||||
<description>Tracing wrapper for ROS 2.</description>
|
<description>Tracing wrapper for ROS 2.</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>
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
Changelog for package tracetools_launch
|
Changelog for package tracetools_launch
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Forthcoming
|
0.2.3 (2019-08-05)
|
||||||
-----------
|
------------------
|
||||||
* Add append_timestamp option for trace action
|
* Add append_timestamp option for trace action
|
||||||
* Contributors: Christophe Bedard
|
* Contributors: Christophe Bedard
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<?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_launch</name>
|
<name>tracetools_launch</name>
|
||||||
<version>0.2.2</version>
|
<version>0.2.3</version>
|
||||||
<description>Launch integration for tracing.</description>
|
<description>Launch integration for tracing.</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>
|
||||||
|
|
|
@ -7,7 +7,7 @@ package_name = 'tracetools_launch'
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=package_name,
|
name=package_name,
|
||||||
version='0.2.2',
|
version='0.2.3',
|
||||||
packages=find_packages(exclude=['test']),
|
packages=find_packages(exclude=['test']),
|
||||||
data_files=[
|
data_files=[
|
||||||
('share/' + package_name, ['package.xml']),
|
('share/' + package_name, ['package.xml']),
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
Changelog for package tracetools_read
|
Changelog for package tracetools_read
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Forthcoming
|
0.2.3 (2019-08-05)
|
||||||
-----------
|
------------------
|
||||||
* Move tracetools_read.utils to the init file
|
* Move tracetools_read.utils to the init file
|
||||||
* Contributors: Christophe Bedard
|
* Contributors: Christophe Bedard
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<?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_read</name>
|
<name>tracetools_read</name>
|
||||||
<version>0.2.2</version>
|
<version>0.2.3</version>
|
||||||
<description>Tools for reading traces.</description>
|
<description>Tools for reading traces.</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>
|
||||||
|
|
|
@ -5,7 +5,7 @@ package_name = 'tracetools_read'
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=package_name,
|
name=package_name,
|
||||||
version='0.2.2',
|
version='0.2.3',
|
||||||
packages=find_packages(exclude=['test']),
|
packages=find_packages(exclude=['test']),
|
||||||
data_files=[
|
data_files=[
|
||||||
('share/' + package_name, ['package.xml']),
|
('share/' + package_name, ['package.xml']),
|
||||||
|
|
|
@ -2,8 +2,8 @@
|
||||||
Changelog for package tracetools_test
|
Changelog for package tracetools_test
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
Forthcoming
|
0.2.3 (2019-08-05)
|
||||||
-----------
|
------------------
|
||||||
* Fix Windows warnings
|
* Fix Windows warnings
|
||||||
* Contributors: Christophe Bedard, Ingo Lütkebohle
|
* Contributors: Christophe Bedard, Ingo Lütkebohle
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<?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_test</name>
|
<name>tracetools_test</name>
|
||||||
<version>0.2.2</version>
|
<version>0.2.3</version>
|
||||||
<description>Testing utilities and tests for the tracetools package.</description>
|
<description>Testing utilities and tests for the tracetools package.</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>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<?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_trace</name>
|
<name>tracetools_trace</name>
|
||||||
<version>0.2.2</version>
|
<version>0.2.3</version>
|
||||||
<description>Tools for setting up tracing sessions.</description>
|
<description>Tools for setting up tracing sessions.</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>
|
||||||
|
|
|
@ -5,7 +5,7 @@ package_name = 'tracetools_trace'
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=package_name,
|
name=package_name,
|
||||||
version='0.2.2',
|
version='0.2.3',
|
||||||
packages=find_packages(exclude=['test']),
|
packages=find_packages(exclude=['test']),
|
||||||
data_files=[
|
data_files=[
|
||||||
('share/' + package_name, ['package.xml']),
|
('share/' + package_name, ['package.xml']),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue