Skip to content

Commit

Permalink
Merge branch 'master' into ros2
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaschke committed Feb 2, 2023
2 parents b62ab85 + 49b3bd0 commit 2938986
Show file tree
Hide file tree
Showing 13 changed files with 58 additions and 7 deletions.
8 changes: 8 additions & 0 deletions capabilities/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package moveit_task_constructor_capabilities
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2023-02-02)
------------------
* Initial release
* Contributors: Michael Görner, Robert Haschke
2 changes: 1 addition & 1 deletion capabilities/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="2">
<name>moveit_task_constructor_capabilities</name>
<version>0.0.0</version>
<version>0.1.0</version>
<description>
MoveGroupCapabilites to interact with MoveIt
</description>
Expand Down
8 changes: 8 additions & 0 deletions core/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package moveit_task_constructor_core
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2023-02-02)
------------------
* Initial release
* Contributors: Michael Görner, Robert Haschke, Captain Yoshi, Christian Petersmeier, Henning Kayser, Jafar Abdi, Tyler Weaver
2 changes: 1 addition & 1 deletion core/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>moveit_task_constructor_core</name>
<version>0.0.0</version>
<version>0.1.0</version>
<description>MoveIt Task Pipeline</description>

<url type="website">https://github.com/ros-planning/moveit_task_constructor</url>
Expand Down
5 changes: 4 additions & 1 deletion core/src/stages/generate_pose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ void GeneratePose::compute() {
if (upstream_solutions_.empty())
return;

planning_scene::PlanningScenePtr scene = upstream_solutions_.pop()->end()->scene()->diff();
const SolutionBase& s = *upstream_solutions_.pop();
planning_scene::PlanningSceneConstPtr scene = s.end()->scene()->diff();

geometry_msgs::msg::PoseStamped target_pose = properties().get<geometry_msgs::msg::PoseStamped>("pose");
if (target_pose.header.frame_id.empty())
target_pose.header.frame_id = scene->getPlanningFrame();
Expand All @@ -82,6 +84,7 @@ void GeneratePose::compute() {
}

InterfaceState state(scene);
forwardProperties(*s.end(), state); // forward registered properties from received solution
state.properties().set("target_pose", target_pose);

SubTrajectory trajectory;
Expand Down
8 changes: 8 additions & 0 deletions demo/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package moveit_task_constructor_demo
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2023-02-02)
------------------
* Initial release
* Contributors: Michael Görner, Robert Haschke
2 changes: 1 addition & 1 deletion demo/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>moveit_task_constructor_demo</name>
<version>0.0.1</version>
<version>0.1.0</version>
<description>demo tasks illustrating various capabilities of MTC.</description>

<author email="[email protected]">simon Goldstein</author>
Expand Down
8 changes: 8 additions & 0 deletions msgs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package moveit_task_constructor_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2023-02-02)
------------------
* Initial release
* Contributors: Michael Görner, Robert Haschke
2 changes: 1 addition & 1 deletion msgs/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>moveit_task_constructor_msgs</name>
<version>0.0.0</version>
<version>0.1.0</version>
<description>Messages for MoveIt Task Pipeline</description>

<license>BSD</license>
Expand Down
8 changes: 8 additions & 0 deletions rviz_marker_tools/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package rviz_marker_tools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2023-02-02)
------------------
* Initial release
* Contributors: Robert Haschke, Michael Görner
2 changes: 1 addition & 1 deletion rviz_marker_tools/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="2">
<name>rviz_marker_tools</name>
<version>0.0.0</version>
<version>0.1.0</version>
<description>Tools for marker creation / handling</description>

<license>BSD</license>
Expand Down
8 changes: 8 additions & 0 deletions visualization/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package moveit_task_constructor_visualization
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.1.0 (2023-02-02)
------------------
* Initial release
* Contributors: Robert Haschke, Michael Görner
2 changes: 1 addition & 1 deletion visualization/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="2">
<name>moveit_task_constructor_visualization</name>
<version>0.0.0</version>
<version>0.1.0</version>
<description>Visualization tools for MoveIt Task Pipeline</description>

<license>BSD</license>
Expand Down

0 comments on commit 2938986

Please sign in to comment.