Merge branch '0.3.0' into 'master'

Version 0.3.0

See merge request micro-ROS/ros_tracing/ros2_tracing!153
This commit is contained in:
Christophe Bedard 2020-03-04 17:33:35 +00:00
commit 3c02ef058c
15 changed files with 43 additions and 10 deletions

View file

@ -2,6 +2,11 @@
Changelog for package ros2trace Changelog for package ros2trace
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.3.0 (2020-03-04)
------------------
* Expose context enabling through CLI and Trace action
* Contributors: Christophe Bedard
0.2.11 (2019-12-09) 0.2.11 (2019-12-09)
------------------- -------------------
* Remove duplicated code for trace command * Remove duplicated code for trace command

View file

@ -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.12</version> <version>0.3.0</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="bedard.christophe@gmail.com">Christophe Bedard</maintainer> <maintainer email="bedard.christophe@gmail.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>

View file

@ -5,7 +5,7 @@ package_name = 'ros2trace'
setup( setup(
name=package_name, name=package_name,
version='0.2.12', version='0.3.0',
packages=find_packages(exclude=['test']), packages=find_packages(exclude=['test']),
data_files=[ data_files=[
('share/' + package_name, ['package.xml']), ('share/' + package_name, ['package.xml']),

View file

@ -2,6 +2,11 @@
Changelog for package tracetools Changelog for package tracetools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.3.0 (2020-03-04)
------------------
* Various improvements to the build setup and CMakeLists.txt
* Contributors: Christophe Bedard, Stephen Brawner
0.2.10 (2019-11-17) 0.2.10 (2019-11-17)
------------------- -------------------
* Add new rclcpp_subscription_init tracepoint to support new intra-process comms * Add new rclcpp_subscription_init tracepoint to support new intra-process comms

View file

@ -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.12</version> <version>0.3.0</version>
<description>Tracing wrapper for ROS 2.</description> <description>Tracing wrapper for ROS 2.</description>
<maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer> <maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer>
<maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer> <maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer>

View file

@ -2,6 +2,13 @@
Changelog for package tracetools_launch Changelog for package tracetools_launch
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.3.0 (2020-03-04)
------------------
* Add logs for trace action init and fini
* Expose context enabling through CLI and Trace action
* Extract LdPreload action from Trace action to support preloading any lib
* Contributors: Christophe Bedard
0.2.12 (2019-12-09) 0.2.12 (2019-12-09)
------------------- -------------------
* Use imperative mood in constructor docstring. * Use imperative mood in constructor docstring.

View file

@ -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.12</version> <version>0.3.0</version>
<description>Launch integration for tracing.</description> <description>Launch integration for tracing.</description>
<maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer> <maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer>
<maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer> <maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer>

View file

@ -7,7 +7,7 @@ package_name = 'tracetools_launch'
setup( setup(
name=package_name, name=package_name,
version='0.2.12', version='0.3.0',
packages=find_packages(exclude=['test']), packages=find_packages(exclude=['test']),
data_files=[ data_files=[
('share/' + package_name, ['package.xml']), ('share/' + package_name, ['package.xml']),

View file

@ -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.12</version> <version>0.3.0</version>
<description>Tools for reading traces.</description> <description>Tools for reading traces.</description>
<maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer> <maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer>
<maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer> <maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer>

View file

@ -5,7 +5,7 @@ package_name = 'tracetools_read'
setup( setup(
name=package_name, name=package_name,
version='0.2.12', version='0.3.0',
packages=find_packages(exclude=['test']), packages=find_packages(exclude=['test']),
data_files=[ data_files=[
('share/' + package_name, ['package.xml']), ('share/' + package_name, ['package.xml']),

View file

@ -2,6 +2,12 @@
Changelog for package tracetools_test Changelog for package tracetools_test
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.3.0 (2020-03-04)
------------------
* Merge and update service test to cover callback registration
* Fix default value for events_kernel in TraceTestCase
* Contributors: Christophe Bedard
0.2.12 (2019-12-09) 0.2.12 (2019-12-09)
------------------- -------------------
* Use imperative mood in constructor docstring. * Use imperative mood in constructor docstring.

View file

@ -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.12</version> <version>0.3.0</version>
<description>Testing utilities and tests for the tracetools package.</description> <description>Testing utilities and tests for the tracetools package.</description>
<maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer> <maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer>
<maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer> <maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer>

View file

@ -2,6 +2,16 @@
Changelog for package tracetools_trace Changelog for package tracetools_trace
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.3.0 (2020-03-04)
------------------
* Add more context types and refactor mapping between name and constant
* Check version of LTTng Python module and raise error if below 2.10.7
* Add logs for trace action init and fini
* Expose context enabling through CLI and Trace action
* Add kmem_mm_page_alloc|free to default kernel events
* Remove sched_waking/sched_wakeup from the default kernel events list
* Contributors: Christophe Bedard
0.2.11 (2019-12-09) 0.2.11 (2019-12-09)
------------------- -------------------
* Register Python packages in the ament index * Register Python packages in the ament index

View file

@ -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.12</version> <version>0.3.0</version>
<description>Tools for setting up tracing sessions.</description> <description>Tools for setting up tracing sessions.</description>
<maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer> <maintainer email="bedard.christophe@gmail.com">Christophe Bedard</maintainer>
<maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer> <maintainer email="ingo.luetkebohle@de.bosch.com">Ingo Luetkebohle</maintainer>

View file

@ -5,7 +5,7 @@ package_name = 'tracetools_trace'
setup( setup(
name=package_name, name=package_name,
version='0.2.12', version='0.3.0',
packages=find_packages(exclude=['test']), packages=find_packages(exclude=['test']),
data_files=[ data_files=[
('share/' + package_name, ['package.xml']), ('share/' + package_name, ['package.xml']),