Skip to content

Commit 251335f

Browse files
0.8.0
1 parent 448846d commit 251335f

File tree

9 files changed

+31
-6
lines changed

9 files changed

+31
-6
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.8.0 (2019-04-14)
6+
------------------
7+
* Make 'ros2 launch' work again. (`#201 <https://github.com/ros2/launch_ros/issues/201>`_)
8+
* Added LaunchLogger class (`#145 <https://github.com/ros2/launch/issues/145>`_)
9+
* Changed logger.warn (deprecated) to logger.warning. (`#199 <https://github.com/ros2/launch/issues/199>`_)
10+
* Added Plumb rclpy.init context to get_default_launch_description. (`#193 <https://github.com/ros2/launch/issues/193>`_)
11+
* Added normalize_parameters and evaluate_paramters. (`#192 <https://github.com/ros2/launch/issues/192>`_)
12+
* Added normalize_remap_rule and types. (`#173 <https://github.com/ros2/launch/issues/173>`_)
13+
* Contributors: Chris Lalancette, Dirk Thomas, Jacob Perron, Peter Baughman, Shane Loretz
14+
515
0.7.3 (2018-12-13)
616
------------------
717

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.7.3</version>
7+
<version>0.8.0</version>
88
<description>ROS specific extensions to the launch tool.</description>
99
<maintainer email="[email protected]">William Woodall</maintainer>
1010
<license>Apache License 2.0</license>

launch_ros/setup.py

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

44
setup(
55
name='launch_ros',
6-
version='0.7.3',
6+
version='0.8.0',
77
packages=find_packages(exclude=['test']),
88
install_requires=[
99
'setuptools',

ros2launch/CHANGELOG.rst

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

5+
0.8.0 (2019-04-14)
6+
------------------
7+
* Added --show-all-subprocesses-output command line option. (`#10 <https://github.com/ros2/launch/issues/10>`_)
8+
* Make 'ros2 launch' work again. (`#201 <https://github.com/ros2/launch/issues/201>`_)
9+
* Added plumb rclpy.init context to get_default_launch_description. (`#193 <https://github.com/ros2/launch/issues/193>`_)
10+
* Refactored arg print functions (`#172 <https://github.com/ros2/launch/issues/172>`_)
11+
* Contributors: Chris Lalancette, Michel Hidalgo, Peter Baughman
12+
513
0.7.3 (2018-12-13)
614
------------------
715

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.7.3</version>
7+
<version>0.8.0</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
@@ -3,7 +3,7 @@
33

44
setup(
55
name='ros2launch',
6-
version='0.7.3',
6+
version='0.8.0',
77
packages=find_packages(exclude=['test']),
88
install_requires=['ros2cli'],
99
zip_safe=True,

test_launch_ros/CHANGELOG.rst

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

5+
0.8.0 (2019-04-14)
6+
------------------
7+
* Added normalize_parameters and evaluate_paramters. (`#192 <https://github.com/ros2/launch/issues/192>`_)
8+
* Added normalize_remap_rule and types. (`#173 <https://github.com/ros2/launch/issues/173>`_)
9+
* Added support for required nodes. (`#179 <https://github.com/ros2/launch/issues/179>`_)
10+
* Contributors: Kyle Fazzari, Shane Loretz
11+
512
0.7.3 (2018-12-13)
613
------------------
714

test_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>test_launch_ros</name>
7-
<version>0.7.3</version>
7+
<version>0.8.0</version>
88
<description>Tests for ROS specific extensions to the launch tool.</description>
99
<maintainer email="[email protected]">William Woodall</maintainer>
1010
<license>Apache License 2.0</license>

test_launch_ros/setup.py

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

44
setup(
55
name='test_launch_ros',
6-
version='0.7.3',
6+
version='0.8.0',
77
packages=find_packages(exclude=['test']),
88
install_requires=[
99
'setuptools',

0 commit comments

Comments
 (0)