Skip to content

Commit 80dd758

Browse files
committed
0.21.0
Signed-off-by: Audrow Nash <[email protected]>
1 parent 32dbb67 commit 80dd758

File tree

19 files changed

+42
-12
lines changed

19 files changed

+42
-12
lines changed

launch/CHANGELOG.rst

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

5+
0.21.0 (2022-01-14)
6+
-------------------
7+
* Use asyncio.wait with timeout rather than sleep (`#576 <https://github.com/ros2/launch/issues/576>`_)
8+
* Make test_parser compatible with Python older than 3.8 (`#575 <https://github.com/ros2/launch/issues/575>`_)
9+
* Propagate exceptions of completed actions to launch service main loop (`#566 <https://github.com/ros2/launch/issues/566>`_)
10+
* Warn when loading launch extensions fails (`#572 <https://github.com/ros2/launch/issues/572>`_)
11+
* Add in two fixes for Jammy (`#571 <https://github.com/ros2/launch/issues/571>`_)
12+
* Contributors: Chris Lalancette, Scott K Logan, Shane Loretz, tumtom
13+
514
0.20.0 (2021-11-29)
615
-------------------
716
* Evaluate math symbols and functions in python expression (`#557 <https://github.com/ros2/launch/issues/557>`_)

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_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="2">
44
<name>launch</name>
5-
<version>0.20.0</version>
5+
<version>0.21.0</version>
66
<description>The ROS launch tool.</description>
77

88
<maintainer email="[email protected]">Aditya Pande</maintainer>

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

launch_pytest/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_pytest
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.21.0 (2022-01-14)
6+
-------------------
7+
58
0.20.0 (2021-11-29)
69
-------------------
710
* Update maintainers to Aditya Pande and Michel Hidalgo (`#559 <https://github.com/ros2/launch/issues/559>`_)

launch_pytest/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_pytest</name>
5-
<version>0.20.0</version>
5+
<version>0.21.0</version>
66
<description>A package to create tests which involve launch files and multiple processes.</description>
77

88
<maintainer email="[email protected]">Aditya Pande</maintainer>

launch_pytest/setup.py

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

1010
setup(
1111
name=package_name,
12-
version='0.20.0',
12+
version='0.21.0',
1313
packages=find_packages(exclude=['test']),
1414
data_files=[
1515
('share/ament_index/resource_index/packages', [f'resource/{package_name}']),

launch_testing/CHANGELOG.rst

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

5+
0.21.0 (2022-01-14)
6+
-------------------
7+
* Renamed three files from example_processes (`#573 <https://github.com/ros2/launch/issues/573>`_)
8+
* Fix launch_testing README.md proc keyword to process. (`#554 <https://github.com/ros2/launch/issues/554>`_) (`#560 <https://github.com/ros2/launch/issues/560>`_)
9+
* Contributors: Jacob Perron, Khush Jain
10+
511
0.20.0 (2021-11-29)
612
-------------------
713
* Declare frontend group dependency & use explicit dependencies in launch_testing (`#520 <https://github.com/ros2/launch/issues/520>`_)

launch_testing/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>launch_testing</name>
5-
<version>0.20.0</version>
5+
<version>0.21.0</version>
66
<description>A package to create tests which involve launch files and multiple processes.</description>
77

88
<maintainer email="[email protected]">Aditya Pande</maintainer>

launch_testing/setup.py

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

77
setup(
88
name='launch_testing',
9-
version='0.20.0',
9+
version='0.21.0',
1010
packages=find_packages(exclude=['test']),
1111
data_files=[
1212
('share/ament_index/resource_index/packages', ['resource/launch_testing']),

launch_testing_ament_cmake/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_ament_cmake
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
0.21.0 (2022-01-14)
6+
-------------------
7+
58
0.20.0 (2021-11-29)
69
-------------------
710
* Update maintainers to Aditya Pande and Michel Hidalgo (`#559 <https://github.com/ros2/launch/issues/559>`_)

0 commit comments

Comments
 (0)