Skip to content

Commit 1ad9e51

Browse files
SteveMacenskiwep21
andauthored
Galactic sync for missed commit: 1.0.11 (#2948)
* fix: modify build failure of nav2 bt navigator (#2836) Signed-off-by: wep21 <[email protected]> * bump to 1.0.11 after patch Co-authored-by: Daisuke Nishimatsu <[email protected]>
1 parent 20800f0 commit 1ad9e51

File tree

37 files changed

+38
-36
lines changed

37 files changed

+38
-36
lines changed

nav2_amcl/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>nav2_amcl</name>
5-
<version>1.0.10</version>
5+
<version>1.0.11</version>
66
<description>
77
<p>
88
amcl is a probabilistic localization system for a robot moving in

nav2_behavior_tree/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>nav2_behavior_tree</name>
5-
<version>1.0.10</version>
5+
<version>1.0.11</version>
66
<description>TODO</description>
77
<maintainer email="[email protected]">Michael Jeronimo</maintainer>
88
<maintainer email="[email protected]">Carlos Orduno</maintainer>

nav2_bringup/bringup/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>nav2_bringup</name>
5-
<version>1.0.10</version>
5+
<version>1.0.11</version>
66
<description>Bringup scripts and configurations for the Nav2 stack</description>
77
<maintainer email="[email protected]">Michael Jeronimo</maintainer>
88
<maintainer email="[email protected]">Steve Macenski</maintainer>

nav2_bringup/nav2_gazebo_spawner/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>nav2_gazebo_spawner</name>
5-
<version>1.0.10</version>
5+
<version>1.0.11</version>
66
<description>Package for spawning a robot model into Gazebo for Nav2</description>
77
<maintainer email="[email protected]">lkumarbe</maintainer>
88
<maintainer email="[email protected]">lkumarbe</maintainer>

nav2_bt_navigator/include/nav2_bt_navigator/bt_navigator.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <vector>
2121

2222
#include "nav2_util/lifecycle_node.hpp"
23+
#include "nav2_util/odometry_utils.hpp"
2324
#include "rclcpp_action/rclcpp_action.hpp"
2425
#include "tf2_ros/buffer.h"
2526
#include "tf2_ros/transform_listener.h"

nav2_bt_navigator/include/nav2_bt_navigator/navigator.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#include <vector>
2121
#include <mutex>
2222

23+
#include "nav2_util/odometry_utils.hpp"
2324
#include "tf2_ros/buffer.h"
2425
#include "rclcpp/rclcpp.hpp"
2526
#include "rclcpp_lifecycle/lifecycle_node.hpp"
@@ -287,7 +288,7 @@ class Navigator
287288
* @param Method to configure resources.
288289
*/
289290
virtual bool configure(
290-
rclcpp_lifecycle::LifecycleNode::WeakPtr /*node*/
291+
rclcpp_lifecycle::LifecycleNode::WeakPtr /*node*/,
291292
std::shared_ptr<nav2_util::OdomSmoother> /*odom_smoother*/)
292293
{
293294
return true;

nav2_bt_navigator/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>nav2_bt_navigator</name>
5-
<version>1.0.10</version>
5+
<version>1.0.11</version>
66
<description>TODO</description>
77
<maintainer email="[email protected]">Michael Jeronimo</maintainer>
88
<license>Apache-2.0</license>

nav2_bt_navigator/src/bt_navigator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ BtNavigator::on_configure(const rclcpp_lifecycle::State & /*state*/)
108108
feedback_utils.transform_tolerance = transform_tolerance_;
109109

110110
// Odometry smoother object for getting current speed
111-
odom_smoother_ = std::make_shared<nav2_util::OdomSmoother>(shared_from_this(), 0.3, odom_topic_)
111+
odom_smoother_ = std::make_shared<nav2_util::OdomSmoother>(shared_from_this(), 0.3, odom_topic_);
112112

113113
if (!pose_navigator_->on_configure(
114114
shared_from_this(), plugin_lib_names, feedback_utils, &plugin_muxer_, odom_smoother_))

nav2_common/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>nav2_common</name>
5-
<version>1.0.10</version>
5+
<version>1.0.11</version>
66
<description>Common support functionality used throughout the navigation 2 stack</description>
77
<maintainer email="[email protected]">Carl Delsey</maintainer>
88
<license>Apache-2.0</license>

nav2_controller/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>nav2_controller</name>
5-
<version>1.0.10</version>
5+
<version>1.0.11</version>
66
<description>Controller action interface</description>
77
<maintainer email="[email protected]">Carl Delsey</maintainer>
88
<license>Apache-2.0</license>

0 commit comments

Comments
 (0)