Skip to content

Commit

Permalink
Merge branch 'master' into fix/slope_inaccuracies
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonParapura authored Jan 24, 2025
2 parents c6733e3 + 3f8a504 commit a41b77c
Show file tree
Hide file tree
Showing 170 changed files with 3,333 additions and 1,858 deletions.
15 changes: 15 additions & 0 deletions common/math/arithmetic/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ Changelog for package arithmetic
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion common/math/arithmetic/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>arithmetic</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>arithmetic library for scenario_simulator_v2</description>
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
<license>Apache License 2.0</license>
Expand Down
18 changes: 18 additions & 0 deletions common/math/geometry/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,24 @@ Changelog for package geometry
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge pull request `#1472 <https://github.com/tier4/scenario_simulator_v2/issues/1472>`_ from tier4/ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
HdMapUtils refactor (PR 1/6) - create lanelet_wrapper: use ::lanelet_map and ::pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* fix(traffic_simulator): fix follow_trajectory_action issue, add orientation to distance calc, remove toCanonicalizedLaneletPose(point...) because it can cause a another issues
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Masaya Kataoka, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
// Copyright 2015 TIER IV, Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef GEOMETRY__QUATERNION__DIRECTION_TO_QUATERNION_HPP_
#define GEOMETRY__QUATERNION__DIRECTION_TO_QUATERNION_HPP_

#include <cmath>
#include <geometry/quaternion/euler_to_quaternion.hpp>
#include <geometry/vector3/is_like_vector3.hpp>
#include <geometry_msgs/msg/quaternion.hpp>
#include <geometry_msgs/msg/vector3.hpp>

namespace math
{
namespace geometry
{
auto convertDirectionToQuaternion(const double dx, const double dy, const double dz)
{
const auto euler_angles = geometry_msgs::build<geometry_msgs::msg::Vector3>()
.x(0.0)
.y(std::atan2(-dz, std::hypot(dx, dy)))
.z(std::atan2(dy, dx));
return math::geometry::convertEulerAngleToQuaternion(euler_angles);
}

template <
typename T, std::enable_if_t<std::conjunction_v<IsLikeVector3<T>>, std::nullptr_t> = nullptr>
auto convertDirectionToQuaternion(const T & v)
{
return convertDirectionToQuaternion(v.x, v.y, v.z);
}
} // namespace geometry
} // namespace math

#endif // GEOMETRY__QUATERNION__DIRECTION_TO_QUATERNION_HPP_
2 changes: 1 addition & 1 deletion common/math/geometry/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>geometry</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>geometry math library for scenario_simulator_v2 application</description>
<maintainer email="[email protected]">Masaya Kataoka</maintainer>
<license>Apache License 2.0</license>
Expand Down
15 changes: 15 additions & 0 deletions common/scenario_simulator_exception/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ Changelog for package scenario_simulator_exception
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion common/scenario_simulator_exception/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>scenario_simulator_exception</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>Exception types for scenario simulator</description>
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
<license>Apache License 2.0</license>
Expand Down
15 changes: 15 additions & 0 deletions common/simple_junit/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ Changelog for package junit_exporter
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion common/simple_junit/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>simple_junit</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>Lightweight JUnit library for ROS 2</description>
<maintainer email="[email protected]">Masaya Kataoka</maintainer>
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
Expand Down
15 changes: 15 additions & 0 deletions common/status_monitor/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ Changelog for package status_monitor
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion common/status_monitor/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>status_monitor</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>none</description>
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
<license>Apache License 2.0</license>
Expand Down
15 changes: 15 additions & 0 deletions external/concealer/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ Changelog for package concealer
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion external/concealer/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>concealer</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>Provides a class 'Autoware' to conceal miscellaneous things to simplify Autoware management of the simulator.</description>
<maintainer email="[email protected]">Tatsuya Yamasaki</maintainer>
<license>Apache License 2.0</license>
Expand Down
15 changes: 15 additions & 0 deletions external/embree_vendor/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@ Changelog for package embree_vendor
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion external/embree_vendor/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>embree_vendor</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>vendor packages for intel raytracing kernel library</description>
<maintainer email="[email protected]">masaya</maintainer>
<license>Apache 2.0</license>
Expand Down
15 changes: 15 additions & 0 deletions map/kashiwanoha_map/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ Changelog for package kashiwanoha_map
* Merge remote-tracking branch 'origin/master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion map/kashiwanoha_map/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>kashiwanoha_map</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>map package for kashiwanoha</description>
<maintainer email="[email protected]">Masaya Kataoka</maintainer>
<license>Apache License 2.0</license>
Expand Down
15 changes: 15 additions & 0 deletions map/simple_cross_map/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ Changelog for package simple_cross_map
* Merge branch 'master' into feature/publish_empty_context
* Contributors: Masaya Kataoka

8.0.0 (2025-01-24)
------------------
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose' of github.com:tier4/scenario_simulator_v2 into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge branch 'master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Merge remote-tracking branch 'origin/master' into ref/RJD-1387-hdmap-utils-to-lanelet-wrapper-pose
* Contributors: Dawid Moszynski, Dawid Moszyński, Mateusz Palczuk

7.4.7 (2025-01-20)
------------------
* Merge branch 'master' into RJD-1511/bug_fix
Expand Down
2 changes: 1 addition & 1 deletion map/simple_cross_map/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>simple_cross_map</name>
<version>7.4.7</version>
<version>8.0.0</version>
<description>map package for simple cross</description>
<maintainer email="[email protected]">Masaya Kataoka</maintainer>
<license>Apache License 2.0</license>
Expand Down
Loading

0 comments on commit a41b77c

Please sign in to comment.