0.6.1
This commit is contained in:
parent
8bffd25746
commit
9da1b95ece
6 changed files with 33 additions and 3 deletions
|
@ -2,6 +2,17 @@
|
||||||
Changelog for package rclcpp
|
Changelog for package rclcpp
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
0.6.1 (2018-12-07)
|
||||||
|
------------------
|
||||||
|
* Added wait_for_action_server() for action clients (`#598 <https://github.com/ros2/rclcpp/issues/598>`_)
|
||||||
|
* Added node path and time stamp to parameter event message (`#584 <https://github.com/ros2/rclcpp/issues/584>`_)
|
||||||
|
* Updated to allow removing a waitable (`#597 <https://github.com/ros2/rclcpp/issues/597>`_)
|
||||||
|
* Refactored init to allow for non-global init (`#587 <https://github.com/ros2/rclcpp/issues/587>`_)
|
||||||
|
* Fixed wrong use of constructor and hanging test (`#596 <https://github.com/ros2/rclcpp/issues/596>`_)
|
||||||
|
* Added class Waitable (`#589 <https://github.com/ros2/rclcpp/issues/589>`_)
|
||||||
|
* Updated rcl_wait_set_add\_* calls (`#586 <https://github.com/ros2/rclcpp/issues/586>`_)
|
||||||
|
* Contributors: Dirk Thomas, Jacob Perron, Shane Loretz, William Woodall, bpwilcox
|
||||||
|
|
||||||
0.6.0 (2018-11-19)
|
0.6.0 (2018-11-19)
|
||||||
------------------
|
------------------
|
||||||
* Updated to use new error handling API from rcutils (`#577 <https://github.com/ros2/rclcpp/issues/577>`_)
|
* Updated to use new error handling API from rcutils (`#577 <https://github.com/ros2/rclcpp/issues/577>`_)
|
||||||
|
|
|
@ -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>rclcpp</name>
|
<name>rclcpp</name>
|
||||||
<version>0.6.0</version>
|
<version>0.6.1</version>
|
||||||
<description>The ROS client library in C++.</description>
|
<description>The ROS client library in C++.</description>
|
||||||
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
|
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
|
||||||
<license>Apache License 2.0</license>
|
<license>Apache License 2.0</license>
|
||||||
|
|
12
rclcpp_action/CHANGELOG.rst
Normal file
12
rclcpp_action/CHANGELOG.rst
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
Changelog for package rclcpp_action
|
||||||
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
0.6.1 (2018-12-07)
|
||||||
|
------------------
|
||||||
|
* Added wait_for_action_server() for action clients (`#598 <https://github.com/ros2/rclcpp/issues/598>`_)
|
||||||
|
* Updated to adapt to action implicit changes (`#602 <https://github.com/ros2/rclcpp/issues/602>`_)
|
||||||
|
* Added rclcpp_action Server implementation (`#593 <https://github.com/ros2/rclcpp/issues/593>`_)
|
||||||
|
* Added action client implementation (`#594 <https://github.com/ros2/rclcpp/issues/594>`_)
|
||||||
|
* Added skeleton for Action Server and Client (`#579 <https://github.com/ros2/rclcpp/issues/579>`_)
|
||||||
|
* Contributors: Michel Hidalgo, Shane Loretz, William Woodall
|
|
@ -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>rclcpp_action</name>
|
<name>rclcpp_action</name>
|
||||||
<version>0.5.1</version>
|
<version>0.6.1</version>
|
||||||
<description>Adds action APIs for C++.</description>
|
<description>Adds action APIs for C++.</description>
|
||||||
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
|
<maintainer email="dthomas@osrfoundation.org">Dirk Thomas</maintainer>
|
||||||
<license>Apache License 2.0</license>
|
<license>Apache License 2.0</license>
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
Changelog for package rclcpp_lifecycle
|
Changelog for package rclcpp_lifecycle
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
||||||
|
0.6.1 (2018-12-07)
|
||||||
|
------------------
|
||||||
|
* Added node path and time stamp to parameter event message (`#584 <https://github.com/ros2/rclcpp/issues/584>`_)
|
||||||
|
* Refactored init to allow for non-global init (`#587 <https://github.com/ros2/rclcpp/issues/587>`_)
|
||||||
|
* Add class Waitable (`#589 <https://github.com/ros2/rclcpp/issues/589>`_)
|
||||||
|
* Contributors: Dirk Thomas, Jacob Perron, William Woodall, bpwilcox
|
||||||
|
|
||||||
0.6.0
|
0.6.0
|
||||||
-----------
|
-----------
|
||||||
* Updated to use new error handling API from rcutils (`#577 <https://github.com/ros2/rclcpp/issues/577>`_)
|
* Updated to use new error handling API from rcutils (`#577 <https://github.com/ros2/rclcpp/issues/577>`_)
|
||||||
|
|
|
@ -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>rclcpp_lifecycle</name>
|
<name>rclcpp_lifecycle</name>
|
||||||
<version>0.6.0</version>
|
<version>0.6.1</version>
|
||||||
<description>Package containing a prototype for lifecycle implementation</description>
|
<description>Package containing a prototype for lifecycle implementation</description>
|
||||||
<maintainer email="karsten@osrfoundation.org">Karsten Knese</maintainer>
|
<maintainer email="karsten@osrfoundation.org">Karsten Knese</maintainer>
|
||||||
<license>Apache License 2.0</license>
|
<license>Apache License 2.0</license>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue