File tree Expand file tree Collapse file tree 20 files changed +28
-17
lines changed
lbr_demos_fri_ros2_advanced_cpp
lbr_demos_fri_ros2_advanced_python
lbr_demos_fri_ros2_python
lbr_demos_ros2_control_cpp
lbr_demos_ros2_control_python Expand file tree Collapse file tree 20 files changed +28
-17
lines changed Original file line number Diff line number Diff line change 1
1
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2
2
Changelog for package LBR FRI ROS 2 Stack
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
+ Humble v1.4.3 (2024-02-03)
5
+ --------------------------
6
+ * Fixes planning scene namespace https://github.com/lbr-stack/lbr_fri_ros2_stack/issues/153
7
+ * Refers to https://github.com/lbr-stack/lbr_fri_ros2_stack/pull/155
8
+
4
9
Humble v1.4.2 (2023-12-29)
5
10
--------------------------
6
11
* Fixes cartesian path for move group node with namespace: https://github.com/lbr-stack/lbr_fri_ros2_stack/issues/133
Original file line number Diff line number Diff line change @@ -19,6 +19,6 @@ authors:
19
19
20
20
21
21
title : " LBR-Stack: ROS 2 and Python Integration of KUKA FRI for Med and IIWA Robots"
22
- version : 1.4.2
22
+ version : 1.4.3
23
23
doi : 10.48550/arXiv.2311.12709
24
- date-released : 2023-12-29
24
+ date-released : 2024-02-03
Original file line number Diff line number Diff line change @@ -65,6 +65,8 @@ def launch_setup(context: LaunchContext) -> List[LaunchDescriptionEntity]:
65
65
("display_planned_path" , robot_name + "/display_planned_path" ),
66
66
("joint_states" , robot_name + "/joint_states" ),
67
67
("monitored_planning_scene" , robot_name + "/monitored_planning_scene" ),
68
+ ("planning_scene" , robot_name + "/planning_scene" ),
69
+ ("planning_scene_world" , robot_name + "/planning_scene_world" ),
68
70
("robot_description" , robot_name + "/robot_description" ),
69
71
("robot_description_semantic" , robot_name + "/robot_description_semantic" ),
70
72
],
Original file line number Diff line number Diff line change @@ -122,6 +122,8 @@ def launch_setup(context: LaunchContext) -> List[LaunchDescriptionEntity]:
122
122
("display_planned_path" , robot_name + "/display_planned_path" ),
123
123
("joint_states" , robot_name + "/joint_states" ),
124
124
("monitored_planning_scene" , robot_name + "/monitored_planning_scene" ),
125
+ ("planning_scene" , robot_name + "/planning_scene" ),
126
+ ("planning_scene_world" , robot_name + "/planning_scene_world" ),
125
127
("robot_description" , robot_name + "/robot_description" ),
126
128
("robot_description_semantic" , robot_name + "/robot_description_semantic" ),
127
129
],
Original file line number Diff line number Diff line change @@ -99,6 +99,8 @@ def launch_setup(context: LaunchContext) -> List[LaunchDescriptionEntity]:
99
99
("display_planned_path" , robot_name + "/display_planned_path" ),
100
100
("joint_states" , robot_name + "/joint_states" ),
101
101
("monitored_planning_scene" , robot_name + "/monitored_planning_scene" ),
102
+ ("planning_scene" , robot_name + "/planning_scene" ),
103
+ ("planning_scene_world" , robot_name + "/planning_scene_world" ),
102
104
("robot_description" , robot_name + "/robot_description" ),
103
105
("robot_description_semantic" , robot_name + "/robot_description_semantic" ),
104
106
],
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_bringup</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >LBR launch files.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_demos_fri_ros2_advanced_cpp</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >Advanced C++ demos for the lbr_fri_ros2.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_demos_fri_ros2_advanced_python</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >Advanced Python demos for the lbr_fri_ros2.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = package_name ,
9
- version = "1.4.2 " ,
9
+ version = "1.4.3 " ,
10
10
packages = [package_name ],
11
11
data_files = [
12
12
("share/ament_index/resource_index/packages" , ["resource/" + package_name ]),
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_demos_fri_ros2_cpp</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >C++ demos for the lbr_fri_ros2.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_demos_fri_ros2_python</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >Python demos for the lbr_fri_ros2.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = package_name ,
9
- version = "1.4.2 " ,
9
+ version = "1.4.3 " ,
10
10
packages = [package_name ],
11
11
data_files = [
12
12
("share/ament_index/resource_index/packages" , ["resource/" + package_name ]),
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_demos_ros2_control_cpp</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >C++ demos for the LBR ros2_control integration.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_demos_ros2_control_python</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >Python demos for the LBR ros2_control integration.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 4
4
5
5
setup (
6
6
name = package_name ,
7
- version = "1.4.2 " ,
7
+ version = "1.4.3 " ,
8
8
packages = [package_name ],
9
9
data_files = [
10
10
("share/ament_index/resource_index/packages" , ["resource/" + package_name ]),
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_description</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >KUKA LBR description files</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_fri_msgs</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >ROS 2 message for the Fast Robot Interface (FRI) specific states.</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_fri_ros2</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >The lbr_fri_ros2 package provides the Fast Robot Interface (FRI) integration into ROS
7
7
2. Robot states can be extracted and commanded.</description >
8
8
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_fri_ros2_stack</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >ROS 2 stack for KUKA LBRs.</description >
7
7
<maintainer email =" m.huber_1994@hotmail.de" >mhubii</maintainer >
8
8
<license >MIT</license >
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >lbr_ros2_control</name >
5
- <version >1.4.2 </version >
5
+ <version >1.4.3 </version >
6
6
<description >ROS 2 hardware hardware_interface for KUKA LBR through Fast Robot Interface (FRI).</description >
7
7
<maintainer email =" martin.huber@kcl.ac.uk" >mhubii</maintainer >
8
8
<license >MIT</license >
You can’t perform that action at this time.
0 commit comments