Skip to content

Commit 875503f

Browse files
Merge branch 'clalancette/release-4.1.0' into 'master'
Version 4.1.0 See merge request ros-tracing/ros2_tracing!290
2 parents c0a3512 + d8e43ab commit 875503f

File tree

17 files changed

+29
-14
lines changed

17 files changed

+29
-14
lines changed

ros2trace/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package ros2trace
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
4.1.0 (2022-03-29)
6+
------------------
7+
* Fix 'ros2 trace' fini() error
8+
* Contributors: Christophe Bedard
9+
510
4.0.0 (2022-01-20)
611
------------------
712
* Don't require kernel tracer and detect when it's not installed

ros2trace/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>ros2trace</name>
5-
<version>4.0.0</version>
5+
<version>4.1.0</version>
66
<description>The trace command for ROS 2 command line tools.</description>
77
<maintainer email="[email protected]">Christophe Bedard</maintainer>
88
<maintainer email="[email protected]">Ingo Lütkebohle</maintainer>

ros2trace/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name=package_name,
8-
version='4.0.0',
8+
version='4.1.0',
99
packages=find_packages(exclude=['test']),
1010
data_files=[
1111
('share/' + package_name, ['package.xml']),

test_tracetools/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>test_tracetools</name>
5-
<version>4.0.0</version>
5+
<version>4.1.0</version>
66
<description>Tests for the tracetools package.</description>
77
<maintainer email="[email protected]">Christophe Bedard</maintainer>
88
<maintainer email="[email protected]">Ingo Luetkebohle</maintainer>

test_tracetools_launch/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>test_tracetools_launch</name>
5-
<version>4.0.0</version>
5+
<version>4.1.0</version>
66
<description>Tests for the tracetools_launch package.</description>
77
<maintainer email="[email protected]">Christophe Bedard</maintainer>
88
<maintainer email="[email protected]">Ingo Luetkebohle</maintainer>

test_tracetools_launch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name=package_name,
8-
version='4.0.0',
8+
version='4.1.0',
99
packages=find_packages(exclude=['test']),
1010
data_files=[
1111
('share/' + package_name, ['package.xml']),

tracetools/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package tracetools
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
4.1.0 (2022-03-29)
6+
------------------
7+
* Install headers to include/${PROJECT_NAME}
8+
* Contributors: Christophe Bedard, Shane Loretz
9+
510
4.0.0 (2022-01-20)
611
------------------
712
* Merge branch 'update-mentions-of-tracetools-test' into 'master'

tracetools/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>tracetools</name>
5-
<version>4.0.0</version>
5+
<version>4.1.0</version>
66
<description>Tracing wrapper for ROS 2.</description>
77
<maintainer email="[email protected]">Christophe Bedard</maintainer>
88
<maintainer email="[email protected]">Ingo Luetkebohle</maintainer>

tracetools_launch/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>tracetools_launch</name>
5-
<version>4.0.0</version>
5+
<version>4.1.0</version>
66
<description>Launch integration for tracing.</description>
77
<maintainer email="[email protected]">Christophe Bedard</maintainer>
88
<maintainer email="[email protected]">Ingo Luetkebohle</maintainer>

tracetools_launch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name=package_name,
10-
version='4.0.0',
10+
version='4.1.0',
1111
packages=find_packages(exclude=['test']),
1212
data_files=[
1313
('share/' + package_name, ['package.xml']),

0 commit comments

Comments
 (0)