Skip to content

Commit 7013bc3

Browse files
committed
0.11.1
1 parent a395820 commit 7013bc3

File tree

12 files changed

+34
-8
lines changed

12 files changed

+34
-8
lines changed

launch_ros/CHANGELOG.rst

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

5+
0.11.1 (2020-12-09)
6+
-------------------
7+
* Fix case where list of composable nodes is zero (`#173 <https://github.com/ros2/launch_ros/issues/173>`_) (`#209 <https://github.com/ros2/launch_ros/issues/209>`_)
8+
* Do not use event handler for loading composable nodes (`#170 <https://github.com/ros2/launch_ros/issues/170>`_) (`#208 <https://github.com/ros2/launch_ros/issues/208>`_)
9+
* Fix race with launch context changes when loading composable nodes (`#166 <https://github.com/ros2/launch_ros/issues/166>`_) (`#206 <https://github.com/ros2/launch_ros/issues/206>`_)
10+
* Add a way to set remapping rules for all nodes in the same scope (`#163 <https://github.com/ros2/launch_ros/issues/163>`_) (`#203 <https://github.com/ros2/launch_ros/issues/203>`_)
11+
* Resolve libyaml warning when loading parameters from file (`#161 <https://github.com/ros2/launch_ros/issues/161>`_) (`#202 <https://github.com/ros2/launch_ros/issues/202>`_)
12+
* Fix ComposableNode ignoring PushRosNamespace actions (`#162 <https://github.com/ros2/launch_ros/issues/162>`_) (`#201 <https://github.com/ros2/launch_ros/issues/201>`_)
13+
* Contributors: Dereck Wonnacott, Ivan Santiago Paunovic, Jacob Perron
14+
515
0.11.0 (2020-10-28)
616
-------------------
717
* Update maintainer list for Foxy (`#194 <https://github.com/ros2/launch_ros/issues/194>`_)

launch_ros/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
schematypens="http://www.w3.org/2001/XMLSchema"?>
55
<package format="2">
66
<name>launch_ros</name>
7-
<version>0.11.0</version>
7+
<version>0.11.1</version>
88
<description>ROS specific extensions to the launch tool.</description>
99
<maintainer email="[email protected]">Jacob Perron</maintainer>
1010
<maintainer email="[email protected]">Michael Jeronimo</maintainer>

launch_ros/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='0.10.3',
8+
version='0.11.1',
99
packages=find_packages(exclude=['test']),
1010
data_files=[
1111
('share/' + package_name, ['package.xml']),

launch_testing_ros/CHANGELOG.rst

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

5+
0.11.1 (2020-12-09)
6+
-------------------
7+
58
0.11.0 (2020-10-28)
69
-------------------
710
* Update maintainer list for Foxy (`#194 <https://github.com/ros2/launch_ros/issues/194>`_)

launch_testing_ros/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_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>launch_testing_ros</name>
5-
<version>0.11.0</version>
5+
<version>0.11.1</version>
66
<description>A package providing utilities for writing ROS2 enabled launch tests.</description>
77
<maintainer email="[email protected]">Jacob Perron</maintainer>
88
<maintainer email="[email protected]">Michael Jeronimo</maintainer>

launch_testing_ros/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='launch_testing_ros',
8-
version='0.10.3',
8+
version='0.11.1',
99
packages=find_packages(exclude=['test']),
1010
data_files=[
1111
('share/ament_index/resource_index/packages', ['resource/launch_testing_ros']),

ros2launch/CHANGELOG.rst

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

5+
0.11.1 (2020-12-09)
6+
-------------------
7+
58
0.11.0 (2020-10-28)
69
-------------------
710
* Update maintainer list for Foxy (`#194 <https://github.com/ros2/launch_ros/issues/194>`_)

ros2launch/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
schematypens="http://www.w3.org/2001/XMLSchema"?>
55
<package format="2">
66
<name>ros2launch</name>
7-
<version>0.11.0</version>
7+
<version>0.11.1</version>
88
<description>
99
The launch command for ROS 2 command line tools.
1010
</description>

ros2launch/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='0.10.3',
8+
version='0.11.1',
99
packages=find_packages(exclude=['test']),
1010
data_files=[
1111
('share/' + package_name, ['package.xml']),

test_launch_ros/CHANGELOG.rst

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

5+
0.11.1 (2020-12-09)
6+
-------------------
7+
* Fix case where list of composable nodes is zero (`#173 <https://github.com/ros2/launch_ros/issues/173>`_) (`#209 <https://github.com/ros2/launch_ros/issues/209>`_)
8+
* Do not use event handler for loading composable nodes (`#170 <https://github.com/ros2/launch_ros/issues/170>`_) (`#208 <https://github.com/ros2/launch_ros/issues/208>`_)
9+
* Fix race with launch context changes when loading composable nodes (`#166 <https://github.com/ros2/launch_ros/issues/166>`_) (`#206 <https://github.com/ros2/launch_ros/issues/206>`_)
10+
* Add a way to set remapping rules for all nodes in the same scope (`#163 <https://github.com/ros2/launch_ros/issues/163>`_) (`#203 <https://github.com/ros2/launch_ros/issues/203>`_)
11+
* Fix ComposableNode ignoring PushRosNamespace actions (`#162 <https://github.com/ros2/launch_ros/issues/162>`_) (`#201 <https://github.com/ros2/launch_ros/issues/201>`_)
12+
* Remove the loop parameter from async.sleep (`#155 <https://github.com/ros2/launch_ros/issues/155>`_) (`#200 <https://github.com/ros2/launch_ros/issues/200>`_)
13+
* Contributors: Chris Lalancette, Ivan Santiago Paunovic, Jacob Perron
14+
515
0.11.0 (2020-10-28)
616
-------------------
717
* Update maintainer list for Foxy (`#194 <https://github.com/ros2/launch_ros/issues/194>`_)

0 commit comments

Comments
 (0)