From 3fe7f045031f060fe7d52f52191c47bf25ee4666 Mon Sep 17 00:00:00 2001 From: Masaya Kataoka Date: Fri, 5 Apr 2024 10:56:45 +0900 Subject: [PATCH 1/2] remove // headers in STL comment Signed-off-by: Masaya Kataoka --- docs/developer_guide/TrafficSimulator.md | 3 --- .../include/cpp_mock_scenarios/cpp_scenario_node.hpp | 8 +++----- .../src/behavior_plugin/load_do_nothing_plugin.cpp | 6 ++---- .../src/collision/crashing_npc.cpp | 6 ++---- .../src/collision/spawn_with_offset.cpp | 6 ++---- .../src/crosswalk/stop_at_crosswalk.cpp | 6 ++---- .../follow_front_entity/accelerate_and_follow.cpp | 6 ++---- .../follow_front_entity/decelerate_and_follow.cpp | 6 ++---- .../follow_lane/acquire_position_in_world_frame.cpp | 6 ++---- .../src/follow_lane/assign_route_in_world_frame.cpp | 6 ++---- .../src/follow_lane/cancel_request.cpp | 6 ++---- .../src/follow_lane/follow_with_offset.cpp | 6 ++---- .../src/lane_change/lanechange_left.cpp | 6 ++---- .../src/lane_change/lanechange_left_with_id.cpp | 6 ++---- .../src/lane_change/lanechange_linear.cpp | 6 ++---- .../lanechange_linear_lateral_velocity.cpp | 6 ++---- .../src/lane_change/lanechange_linear_time.cpp | 6 ++---- .../lane_change/lanechange_longitudinal_distance.cpp | 6 ++---- .../src/lane_change/lanechange_right.cpp | 6 ++---- .../src/lane_change/lanechange_right_with_id.cpp | 6 ++---- .../src/lane_change/lanechange_time.cpp | 6 ++---- .../get_distance_in_lane_coordinate_distance.cpp | 6 ++---- .../src/measurement/get_distance_to_lane_bound.cpp | 6 ++---- mock/cpp_mock_scenarios/src/merge/merge_left.cpp | 6 ++---- .../src/metrics/traveled_distance.cpp | 12 +++++------- .../src/move_backward/move_backward.cpp | 6 ++---- .../src/pedestrian/walk_straight.cpp | 6 ++---- .../src/random_scenario/random001.cpp | 8 +++----- .../src/speed_planning/request_speed_change.cpp | 6 ++---- .../request_speed_change_continuous_false.cpp | 6 ++---- .../speed_planning/request_speed_change_relative.cpp | 6 ++---- .../src/speed_planning/request_speed_change_step.cpp | 6 ++---- .../request_speed_change_with_limit.cpp | 6 ++---- .../request_speed_change_with_time_constraint.cpp | 6 ++---- ...uest_speed_change_with_time_constraint_linear.cpp | 6 ++---- ...st_speed_change_with_time_constraint_relative.cpp | 6 ++---- .../src/traffic_simulation_demo.cpp | 6 ++---- 37 files changed, 77 insertions(+), 152 deletions(-) diff --git a/docs/developer_guide/TrafficSimulator.md b/docs/developer_guide/TrafficSimulator.md index a2063379add..67d8839a7a1 100644 --- a/docs/developer_guide/TrafficSimulator.md +++ b/docs/developer_guide/TrafficSimulator.md @@ -26,10 +26,7 @@ You can also see the detailed documentation of the API classes [here](https://ti #include #include #include - #include - -// headers in STL #include #include #include diff --git a/mock/cpp_mock_scenarios/include/cpp_mock_scenarios/cpp_scenario_node.hpp b/mock/cpp_mock_scenarios/include/cpp_mock_scenarios/cpp_scenario_node.hpp index cee1618f281..5989f077922 100644 --- a/mock/cpp_mock_scenarios/include/cpp_mock_scenarios/cpp_scenario_node.hpp +++ b/mock/cpp_mock_scenarios/include/cpp_mock_scenarios/cpp_scenario_node.hpp @@ -15,14 +15,12 @@ #ifndef CPP_MOCK_SCENARIOS__CPP_SCENARIO_NODE_HPP_ #define CPP_MOCK_SCENARIOS__CPP_SCENARIO_NODE_HPP_ -#include -#include -#include - -// headers in STL #include #include +#include +#include #include +#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/behavior_plugin/load_do_nothing_plugin.cpp b/mock/cpp_mock_scenarios/src/behavior_plugin/load_do_nothing_plugin.cpp index d511b065fe7..124f53f1597 100644 --- a/mock/cpp_mock_scenarios/src/behavior_plugin/load_do_nothing_plugin.cpp +++ b/mock/cpp_mock_scenarios/src/behavior_plugin/load_do_nothing_plugin.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/collision/crashing_npc.cpp b/mock/cpp_mock_scenarios/src/collision/crashing_npc.cpp index f85738e8817..a7cb7b95605 100644 --- a/mock/cpp_mock_scenarios/src/collision/crashing_npc.cpp +++ b/mock/cpp_mock_scenarios/src/collision/crashing_npc.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/collision/spawn_with_offset.cpp b/mock/cpp_mock_scenarios/src/collision/spawn_with_offset.cpp index 7210d5c8bdc..04fa1eceac6 100644 --- a/mock/cpp_mock_scenarios/src/collision/spawn_with_offset.cpp +++ b/mock/cpp_mock_scenarios/src/collision/spawn_with_offset.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/crosswalk/stop_at_crosswalk.cpp b/mock/cpp_mock_scenarios/src/crosswalk/stop_at_crosswalk.cpp index 3e433423821..cd19c42a469 100644 --- a/mock/cpp_mock_scenarios/src/crosswalk/stop_at_crosswalk.cpp +++ b/mock/cpp_mock_scenarios/src/crosswalk/stop_at_crosswalk.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/follow_front_entity/accelerate_and_follow.cpp b/mock/cpp_mock_scenarios/src/follow_front_entity/accelerate_and_follow.cpp index d71729b2a30..d89f8584c03 100644 --- a/mock/cpp_mock_scenarios/src/follow_front_entity/accelerate_and_follow.cpp +++ b/mock/cpp_mock_scenarios/src/follow_front_entity/accelerate_and_follow.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/follow_front_entity/decelerate_and_follow.cpp b/mock/cpp_mock_scenarios/src/follow_front_entity/decelerate_and_follow.cpp index 24108503cb6..6079e54af5e 100644 --- a/mock/cpp_mock_scenarios/src/follow_front_entity/decelerate_and_follow.cpp +++ b/mock/cpp_mock_scenarios/src/follow_front_entity/decelerate_and_follow.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/follow_lane/acquire_position_in_world_frame.cpp b/mock/cpp_mock_scenarios/src/follow_lane/acquire_position_in_world_frame.cpp index e2c477b79e3..9ca26be1585 100644 --- a/mock/cpp_mock_scenarios/src/follow_lane/acquire_position_in_world_frame.cpp +++ b/mock/cpp_mock_scenarios/src/follow_lane/acquire_position_in_world_frame.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/follow_lane/assign_route_in_world_frame.cpp b/mock/cpp_mock_scenarios/src/follow_lane/assign_route_in_world_frame.cpp index 3631456c15a..ea6d6cbf02d 100644 --- a/mock/cpp_mock_scenarios/src/follow_lane/assign_route_in_world_frame.cpp +++ b/mock/cpp_mock_scenarios/src/follow_lane/assign_route_in_world_frame.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/follow_lane/cancel_request.cpp b/mock/cpp_mock_scenarios/src/follow_lane/cancel_request.cpp index d21a4889826..acb92544a19 100644 --- a/mock/cpp_mock_scenarios/src/follow_lane/cancel_request.cpp +++ b/mock/cpp_mock_scenarios/src/follow_lane/cancel_request.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/follow_lane/follow_with_offset.cpp b/mock/cpp_mock_scenarios/src/follow_lane/follow_with_offset.cpp index 38bba72a680..dc2d0df7616 100644 --- a/mock/cpp_mock_scenarios/src/follow_lane/follow_with_offset.cpp +++ b/mock/cpp_mock_scenarios/src/follow_lane/follow_with_offset.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_left.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_left.cpp index e7ad9daa2a0..0da53d6be17 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_left.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_left.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_left_with_id.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_left_with_id.cpp index b49470be49a..f44fd8cf1db 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_left_with_id.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_left_with_id.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear.cpp index a22427f0691..96e4f951e36 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_lateral_velocity.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_lateral_velocity.cpp index 5f81424dced..5fb7bf04e9c 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_lateral_velocity.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_lateral_velocity.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_time.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_time.cpp index a0581369b18..ce85da9136b 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_time.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_linear_time.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_longitudinal_distance.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_longitudinal_distance.cpp index c822a005b25..18b71d0914a 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_longitudinal_distance.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_longitudinal_distance.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_right.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_right.cpp index 491f557bd4b..99a832208b4 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_right.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_right.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_right_with_id.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_right_with_id.cpp index 9ebd20c6b51..aca94784ae8 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_right_with_id.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_right_with_id.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/lane_change/lanechange_time.cpp b/mock/cpp_mock_scenarios/src/lane_change/lanechange_time.cpp index 3d815d19113..d51f0629965 100644 --- a/mock/cpp_mock_scenarios/src/lane_change/lanechange_time.cpp +++ b/mock/cpp_mock_scenarios/src/lane_change/lanechange_time.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/measurement/get_distance_in_lane_coordinate_distance.cpp b/mock/cpp_mock_scenarios/src/measurement/get_distance_in_lane_coordinate_distance.cpp index 4d51b8dd65c..373ba5d72de 100644 --- a/mock/cpp_mock_scenarios/src/measurement/get_distance_in_lane_coordinate_distance.cpp +++ b/mock/cpp_mock_scenarios/src/measurement/get_distance_in_lane_coordinate_distance.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/measurement/get_distance_to_lane_bound.cpp b/mock/cpp_mock_scenarios/src/measurement/get_distance_to_lane_bound.cpp index 0ffc13ec20b..b059a66602b 100644 --- a/mock/cpp_mock_scenarios/src/measurement/get_distance_to_lane_bound.cpp +++ b/mock/cpp_mock_scenarios/src/measurement/get_distance_to_lane_bound.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/merge/merge_left.cpp b/mock/cpp_mock_scenarios/src/merge/merge_left.cpp index 1dd1ab4738a..58657664c30 100644 --- a/mock/cpp_mock_scenarios/src/merge/merge_left.cpp +++ b/mock/cpp_mock_scenarios/src/merge/merge_left.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/metrics/traveled_distance.cpp b/mock/cpp_mock_scenarios/src/metrics/traveled_distance.cpp index ee1f035b666..a9fb6e778d1 100644 --- a/mock/cpp_mock_scenarios/src/metrics/traveled_distance.cpp +++ b/mock/cpp_mock_scenarios/src/metrics/traveled_distance.cpp @@ -15,22 +15,20 @@ #include #include +#include #include #include +#include +#include #include +#include #include #include +#include #include "rclcpp/logger.hpp" #include "rclcpp/logging.hpp" -// headers in STL -#include -#include -#include -#include -#include - namespace cpp_mock_scenarios { class TraveledDistanceScenario : public cpp_mock_scenarios::CppScenarioNode diff --git a/mock/cpp_mock_scenarios/src/move_backward/move_backward.cpp b/mock/cpp_mock_scenarios/src/move_backward/move_backward.cpp index 33638138c07..86472368741 100644 --- a/mock/cpp_mock_scenarios/src/move_backward/move_backward.cpp +++ b/mock/cpp_mock_scenarios/src/move_backward/move_backward.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/pedestrian/walk_straight.cpp b/mock/cpp_mock_scenarios/src/pedestrian/walk_straight.cpp index 54478ddc5ab..c43a293acaa 100644 --- a/mock/cpp_mock_scenarios/src/pedestrian/walk_straight.cpp +++ b/mock/cpp_mock_scenarios/src/pedestrian/walk_straight.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/random_scenario/random001.cpp b/mock/cpp_mock_scenarios/src/random_scenario/random001.cpp index 07c451dcb0c..18ba59f2115 100644 --- a/mock/cpp_mock_scenarios/src/random_scenario/random001.cpp +++ b/mock/cpp_mock_scenarios/src/random_scenario/random001.cpp @@ -17,15 +17,13 @@ #include #include #include +#include #include +#include #include +#include #include #include - -// headers in STL -#include -#include -#include #include class RandomScenario : public cpp_mock_scenarios::CppScenarioNode diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change.cpp index 94844fabf3f..79b7c5dfb05 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_continuous_false.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_continuous_false.cpp index 7a83e377531..b49c3b12311 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_continuous_false.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_continuous_false.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_relative.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_relative.cpp index c1c14e5e77d..87721639833 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_relative.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_relative.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_step.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_step.cpp index 7e6d66932bc..2cdec5c0d60 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_step.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_step.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_limit.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_limit.cpp index 675181e00c4..5e9e161d001 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_limit.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_limit.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint.cpp index f486fcec618..3552d6dbb75 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_linear.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_linear.cpp index 144857533df..b6999ecd263 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_linear.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_linear.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_relative.cpp b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_relative.cpp index 9336be41024..be3fa4e59d9 100644 --- a/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_relative.cpp +++ b/mock/cpp_mock_scenarios/src/speed_planning/request_speed_change_with_time_constraint_relative.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios diff --git a/mock/cpp_mock_scenarios/src/traffic_simulation_demo.cpp b/mock/cpp_mock_scenarios/src/traffic_simulation_demo.cpp index a3c311ad6a6..d323f921542 100644 --- a/mock/cpp_mock_scenarios/src/traffic_simulation_demo.cpp +++ b/mock/cpp_mock_scenarios/src/traffic_simulation_demo.cpp @@ -17,13 +17,11 @@ #include #include #include +#include #include +#include #include #include - -// headers in STL -#include -#include #include namespace cpp_mock_scenarios From 5d1a387408438bfb7d12e8d20c7520594a0cccec Mon Sep 17 00:00:00 2001 From: Release Bot Date: Fri, 5 Apr 2024 04:33:35 +0000 Subject: [PATCH 2/2] Bump version of scenario_simulator_v2 from version 1.11.0 to version 1.11.1 --- common/math/arithmetic/CHANGELOG.rst | 3 +++ common/math/arithmetic/package.xml | 2 +- common/math/geometry/CHANGELOG.rst | 3 +++ common/math/geometry/package.xml | 2 +- common/scenario_simulator_exception/CHANGELOG.rst | 3 +++ common/scenario_simulator_exception/package.xml | 2 +- common/simple_junit/CHANGELOG.rst | 3 +++ common/simple_junit/package.xml | 2 +- common/status_monitor/CHANGELOG.rst | 3 +++ common/status_monitor/package.xml | 2 +- external/concealer/CHANGELOG.rst | 3 +++ external/concealer/package.xml | 2 +- external/embree_vendor/CHANGELOG.rst | 3 +++ external/embree_vendor/package.xml | 2 +- map/kashiwanoha_map/CHANGELOG.rst | 3 +++ map/kashiwanoha_map/package.xml | 2 +- mock/cpp_mock_scenarios/CHANGELOG.rst | 7 +++++++ mock/cpp_mock_scenarios/package.xml | 2 +- .../openscenario_experimental_catalog/CHANGELOG.rst | 3 +++ openscenario/openscenario_experimental_catalog/package.xml | 2 +- openscenario/openscenario_interpreter/CHANGELOG.rst | 3 +++ openscenario/openscenario_interpreter/package.xml | 2 +- .../openscenario_interpreter_example/CHANGELOG.rst | 3 +++ openscenario/openscenario_interpreter_example/package.xml | 2 +- openscenario/openscenario_interpreter_msgs/CHANGELOG.rst | 3 +++ openscenario/openscenario_interpreter_msgs/package.xml | 2 +- openscenario/openscenario_preprocessor/CHANGELOG.rst | 3 +++ openscenario/openscenario_preprocessor/package.xml | 2 +- openscenario/openscenario_preprocessor_msgs/CHANGELOG.rst | 3 +++ openscenario/openscenario_preprocessor_msgs/package.xml | 2 +- openscenario/openscenario_utility/CHANGELOG.rst | 3 +++ openscenario/openscenario_utility/package.xml | 2 +- rviz_plugins/openscenario_visualization/CHANGELOG.rst | 3 +++ rviz_plugins/openscenario_visualization/package.xml | 2 +- .../real_time_factor_control_rviz_plugin/CHANGELOG.rst | 3 +++ .../real_time_factor_control_rviz_plugin/package.xml | 2 +- scenario_simulator_v2/CHANGELOG.rst | 3 +++ scenario_simulator_v2/package.xml | 2 +- simulation/behavior_tree_plugin/CHANGELOG.rst | 3 +++ simulation/behavior_tree_plugin/package.xml | 2 +- simulation/do_nothing_plugin/CHANGELOG.rst | 3 +++ simulation/do_nothing_plugin/package.xml | 2 +- simulation/simple_sensor_simulator/CHANGELOG.rst | 3 +++ simulation/simple_sensor_simulator/package.xml | 2 +- simulation/simulation_interface/CHANGELOG.rst | 3 +++ simulation/simulation_interface/package.xml | 2 +- simulation/traffic_simulator/CHANGELOG.rst | 3 +++ simulation/traffic_simulator/package.xml | 2 +- simulation/traffic_simulator_msgs/CHANGELOG.rst | 3 +++ simulation/traffic_simulator_msgs/package.xml | 2 +- test_runner/random_test_runner/CHANGELOG.rst | 3 +++ test_runner/random_test_runner/package.xml | 2 +- test_runner/scenario_test_runner/CHANGELOG.rst | 3 +++ test_runner/scenario_test_runner/package.xml | 2 +- 54 files changed, 112 insertions(+), 27 deletions(-) diff --git a/common/math/arithmetic/CHANGELOG.rst b/common/math/arithmetic/CHANGELOG.rst index 35a55c949b7..79f5c95791b 100644 --- a/common/math/arithmetic/CHANGELOG.rst +++ b/common/math/arithmetic/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package arithmetic ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/common/math/arithmetic/package.xml b/common/math/arithmetic/package.xml index 316fe13c81d..f9cd2caddf2 100644 --- a/common/math/arithmetic/package.xml +++ b/common/math/arithmetic/package.xml @@ -2,7 +2,7 @@ arithmetic - 1.11.0 + 1.11.1 arithmetic library for scenario_simulator_v2 Tatsuya Yamasaki Apache License 2.0 diff --git a/common/math/geometry/CHANGELOG.rst b/common/math/geometry/CHANGELOG.rst index de2e823c9a9..6e69f0fc4b0 100644 --- a/common/math/geometry/CHANGELOG.rst +++ b/common/math/geometry/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package geometry ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/common/math/geometry/package.xml b/common/math/geometry/package.xml index f42380a365e..2b4bf4f171e 100644 --- a/common/math/geometry/package.xml +++ b/common/math/geometry/package.xml @@ -2,7 +2,7 @@ geometry - 1.11.0 + 1.11.1 geometry math library for scenario_simulator_v2 application Masaya Kataoka Apache License 2.0 diff --git a/common/scenario_simulator_exception/CHANGELOG.rst b/common/scenario_simulator_exception/CHANGELOG.rst index 075b92c9197..5080497050b 100644 --- a/common/scenario_simulator_exception/CHANGELOG.rst +++ b/common/scenario_simulator_exception/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package scenario_simulator_exception ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/common/scenario_simulator_exception/package.xml b/common/scenario_simulator_exception/package.xml index 94ca86eacdf..409845dfb12 100644 --- a/common/scenario_simulator_exception/package.xml +++ b/common/scenario_simulator_exception/package.xml @@ -2,7 +2,7 @@ scenario_simulator_exception - 1.11.0 + 1.11.1 Exception types for scenario simulator Tatsuya Yamasaki Apache License 2.0 diff --git a/common/simple_junit/CHANGELOG.rst b/common/simple_junit/CHANGELOG.rst index 8c793ffaafc..b461cabb71c 100644 --- a/common/simple_junit/CHANGELOG.rst +++ b/common/simple_junit/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package junit_exporter ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/common/simple_junit/package.xml b/common/simple_junit/package.xml index 5a6a6294cef..637d4a364f5 100644 --- a/common/simple_junit/package.xml +++ b/common/simple_junit/package.xml @@ -2,7 +2,7 @@ simple_junit - 1.11.0 + 1.11.1 Lightweight JUnit library for ROS 2 Masaya Kataoka Tatsuya Yamasaki diff --git a/common/status_monitor/CHANGELOG.rst b/common/status_monitor/CHANGELOG.rst index 0db7c594b6c..db5d46a4aff 100644 --- a/common/status_monitor/CHANGELOG.rst +++ b/common/status_monitor/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package status_monitor ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/common/status_monitor/package.xml b/common/status_monitor/package.xml index 9932a001497..0587a9101f8 100644 --- a/common/status_monitor/package.xml +++ b/common/status_monitor/package.xml @@ -2,7 +2,7 @@ status_monitor - 1.11.0 + 1.11.1 none Tatsuya Yamasaki Apache License 2.0 diff --git a/external/concealer/CHANGELOG.rst b/external/concealer/CHANGELOG.rst index 32eb00f2bb2..bb170cf731e 100644 --- a/external/concealer/CHANGELOG.rst +++ b/external/concealer/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package concealer ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/external/concealer/package.xml b/external/concealer/package.xml index 10ef9c86ab4..9e911091986 100644 --- a/external/concealer/package.xml +++ b/external/concealer/package.xml @@ -2,7 +2,7 @@ concealer - 1.11.0 + 1.11.1 Provides a class 'Autoware' to conceal miscellaneous things to simplify Autoware management of the simulator. Tatsuya Yamasaki Apache License 2.0 diff --git a/external/embree_vendor/CHANGELOG.rst b/external/embree_vendor/CHANGELOG.rst index 879b0e94dc4..d9188fabfa7 100644 --- a/external/embree_vendor/CHANGELOG.rst +++ b/external/embree_vendor/CHANGELOG.rst @@ -5,6 +5,9 @@ Changelog for package embree_vendor 0.0.9 (2021-07-13) ------------------ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge pull request `#1173 `_ from tier4/feature/arm_support diff --git a/external/embree_vendor/package.xml b/external/embree_vendor/package.xml index 3cc900ec11c..2f5d0717aa6 100644 --- a/external/embree_vendor/package.xml +++ b/external/embree_vendor/package.xml @@ -2,7 +2,7 @@ embree_vendor - 1.11.0 + 1.11.1 vendor packages for intel raytracing kernel library masaya Apache 2.0 diff --git a/map/kashiwanoha_map/CHANGELOG.rst b/map/kashiwanoha_map/CHANGELOG.rst index 282aaf1c5db..49c41fbbc06 100644 --- a/map/kashiwanoha_map/CHANGELOG.rst +++ b/map/kashiwanoha_map/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package kashiwanoha_map ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/map/kashiwanoha_map/package.xml b/map/kashiwanoha_map/package.xml index a9777931ae6..71c96a13124 100644 --- a/map/kashiwanoha_map/package.xml +++ b/map/kashiwanoha_map/package.xml @@ -2,7 +2,7 @@ kashiwanoha_map - 1.11.0 + 1.11.1 map package for kashiwanoha Masaya Kataoka Apache License 2.0 diff --git a/mock/cpp_mock_scenarios/CHANGELOG.rst b/mock/cpp_mock_scenarios/CHANGELOG.rst index aba5e66a353..340d7b17e4b 100644 --- a/mock/cpp_mock_scenarios/CHANGELOG.rst +++ b/mock/cpp_mock_scenarios/CHANGELOG.rst @@ -2,6 +2,13 @@ Changelog for package cpp_mock_scenarios ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- +* Merge pull request `#1224 `_ from tier4/fix/remove_headers_in_stl_comment + remove // headers in STL comment +* remove // headers in STL comment +* Contributors: Masaya Kataoka, Tatsuya Yamasaki + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/mock/cpp_mock_scenarios/package.xml b/mock/cpp_mock_scenarios/package.xml index bcbc576d3b5..711e44563f3 100644 --- a/mock/cpp_mock_scenarios/package.xml +++ b/mock/cpp_mock_scenarios/package.xml @@ -2,7 +2,7 @@ cpp_mock_scenarios - 1.11.0 + 1.11.1 C++ mock scenarios masaya Apache License 2.0 diff --git a/openscenario/openscenario_experimental_catalog/CHANGELOG.rst b/openscenario/openscenario_experimental_catalog/CHANGELOG.rst index e4d3bb31a5e..ef095e599b5 100644 --- a/openscenario/openscenario_experimental_catalog/CHANGELOG.rst +++ b/openscenario/openscenario_experimental_catalog/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_experimental_catalog ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/openscenario/openscenario_experimental_catalog/package.xml b/openscenario/openscenario_experimental_catalog/package.xml index 7a5135de61c..9f46d436088 100644 --- a/openscenario/openscenario_experimental_catalog/package.xml +++ b/openscenario/openscenario_experimental_catalog/package.xml @@ -2,7 +2,7 @@ openscenario_experimental_catalog - 1.11.0 + 1.11.1 TIER IV experimental catalogs for OpenSCENARIO Tatsuya Yamasaki Apache License 2.0 diff --git a/openscenario/openscenario_interpreter/CHANGELOG.rst b/openscenario/openscenario_interpreter/CHANGELOG.rst index a4e08cd89ae..610c12b405b 100644 --- a/openscenario/openscenario_interpreter/CHANGELOG.rst +++ b/openscenario/openscenario_interpreter/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_interpreter ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/openscenario/openscenario_interpreter/package.xml b/openscenario/openscenario_interpreter/package.xml index 2930b3a40c2..09d7bb76be1 100644 --- a/openscenario/openscenario_interpreter/package.xml +++ b/openscenario/openscenario_interpreter/package.xml @@ -2,7 +2,7 @@ openscenario_interpreter - 1.11.0 + 1.11.1 OpenSCENARIO 1.2.0 interpreter package for Autoware Tatsuya Yamasaki Apache License 2.0 diff --git a/openscenario/openscenario_interpreter_example/CHANGELOG.rst b/openscenario/openscenario_interpreter_example/CHANGELOG.rst index 19df49dbc55..21a45b33ef2 100644 --- a/openscenario/openscenario_interpreter_example/CHANGELOG.rst +++ b/openscenario/openscenario_interpreter_example/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_interpreter_example ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/openscenario/openscenario_interpreter_example/package.xml b/openscenario/openscenario_interpreter_example/package.xml index 4bca28dd47f..456a83cc784 100644 --- a/openscenario/openscenario_interpreter_example/package.xml +++ b/openscenario/openscenario_interpreter_example/package.xml @@ -3,7 +3,7 @@ openscenario_interpreter_example - 1.11.0 + 1.11.1 Examples for some TIER IV OpenSCENARIO Interpreter's features Tatsuya Yamasaki Apache License 2.0 diff --git a/openscenario/openscenario_interpreter_msgs/CHANGELOG.rst b/openscenario/openscenario_interpreter_msgs/CHANGELOG.rst index 85870896e9c..996e1f4503d 100644 --- a/openscenario/openscenario_interpreter_msgs/CHANGELOG.rst +++ b/openscenario/openscenario_interpreter_msgs/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_interpreter_msgs ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/openscenario/openscenario_interpreter_msgs/package.xml b/openscenario/openscenario_interpreter_msgs/package.xml index 16f9f9697b8..004456357ad 100644 --- a/openscenario/openscenario_interpreter_msgs/package.xml +++ b/openscenario/openscenario_interpreter_msgs/package.xml @@ -2,7 +2,7 @@ openscenario_interpreter_msgs - 1.11.0 + 1.11.1 ROS message types for package openscenario_interpreter Yamasaki Tatsuya Apache License 2.0 diff --git a/openscenario/openscenario_preprocessor/CHANGELOG.rst b/openscenario/openscenario_preprocessor/CHANGELOG.rst index 631b556d858..5dc1120c8fa 100644 --- a/openscenario/openscenario_preprocessor/CHANGELOG.rst +++ b/openscenario/openscenario_preprocessor/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_preprocessor ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/openscenario/openscenario_preprocessor/package.xml b/openscenario/openscenario_preprocessor/package.xml index dc1f3e39f9b..fa44f3bc001 100644 --- a/openscenario/openscenario_preprocessor/package.xml +++ b/openscenario/openscenario_preprocessor/package.xml @@ -3,7 +3,7 @@ openscenario_preprocessor - 1.11.0 + 1.11.1 Example package for TIER IV OpenSCENARIO Interpreter Kotaro Yoshimoto Apache License 2.0 diff --git a/openscenario/openscenario_preprocessor_msgs/CHANGELOG.rst b/openscenario/openscenario_preprocessor_msgs/CHANGELOG.rst index 8149e7a3e9b..c4cda42d091 100644 --- a/openscenario/openscenario_preprocessor_msgs/CHANGELOG.rst +++ b/openscenario/openscenario_preprocessor_msgs/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_preprocessor_msgs ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/openscenario/openscenario_preprocessor_msgs/package.xml b/openscenario/openscenario_preprocessor_msgs/package.xml index 30f48ae4097..0347dfb864c 100644 --- a/openscenario/openscenario_preprocessor_msgs/package.xml +++ b/openscenario/openscenario_preprocessor_msgs/package.xml @@ -2,7 +2,7 @@ openscenario_preprocessor_msgs - 1.11.0 + 1.11.1 ROS message types for package openscenario_preprocessor Kotaro Yoshimoto Apache License 2.0 diff --git a/openscenario/openscenario_utility/CHANGELOG.rst b/openscenario/openscenario_utility/CHANGELOG.rst index e8fd2b4fe88..e36ee8320e8 100644 --- a/openscenario/openscenario_utility/CHANGELOG.rst +++ b/openscenario/openscenario_utility/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_utility ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/openscenario/openscenario_utility/package.xml b/openscenario/openscenario_utility/package.xml index 0d23bc0ec91..9180bd92a7d 100644 --- a/openscenario/openscenario_utility/package.xml +++ b/openscenario/openscenario_utility/package.xml @@ -2,7 +2,7 @@ openscenario_utility - 1.11.0 + 1.11.1 Utility tools for ASAM OpenSCENARIO 1.2.0 Tatsuya Yamasaki Apache License 2.0 diff --git a/rviz_plugins/openscenario_visualization/CHANGELOG.rst b/rviz_plugins/openscenario_visualization/CHANGELOG.rst index d09a394eed9..2dcef42c507 100644 --- a/rviz_plugins/openscenario_visualization/CHANGELOG.rst +++ b/rviz_plugins/openscenario_visualization/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_visualization ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge pull request `#1173 `_ from tier4/feature/arm_support diff --git a/rviz_plugins/openscenario_visualization/package.xml b/rviz_plugins/openscenario_visualization/package.xml index b4d3d87dd97..2237b721234 100644 --- a/rviz_plugins/openscenario_visualization/package.xml +++ b/rviz_plugins/openscenario_visualization/package.xml @@ -2,7 +2,7 @@ openscenario_visualization - 1.11.0 + 1.11.1 Visualization tools for simulation results Masaya Kataoka Kyoichi Sugahara diff --git a/rviz_plugins/real_time_factor_control_rviz_plugin/CHANGELOG.rst b/rviz_plugins/real_time_factor_control_rviz_plugin/CHANGELOG.rst index bd6e3f2b0d3..b3f4ff2c071 100644 --- a/rviz_plugins/real_time_factor_control_rviz_plugin/CHANGELOG.rst +++ b/rviz_plugins/real_time_factor_control_rviz_plugin/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package real_time_factor_control_rviz_plugin ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/rviz_plugins/real_time_factor_control_rviz_plugin/package.xml b/rviz_plugins/real_time_factor_control_rviz_plugin/package.xml index 7f788bed5e4..43b766c2184 100644 --- a/rviz_plugins/real_time_factor_control_rviz_plugin/package.xml +++ b/rviz_plugins/real_time_factor_control_rviz_plugin/package.xml @@ -2,7 +2,7 @@ real_time_factor_control_rviz_plugin - 1.11.0 + 1.11.1 Slider controlling real time factor value. Paweł Lech Apache License 2.0 diff --git a/scenario_simulator_v2/CHANGELOG.rst b/scenario_simulator_v2/CHANGELOG.rst index f1681bcfa78..021a072aff9 100644 --- a/scenario_simulator_v2/CHANGELOG.rst +++ b/scenario_simulator_v2/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package scenario_simulator_v2 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/scenario_simulator_v2/package.xml b/scenario_simulator_v2/package.xml index 7bf002ae0f1..f6ca9df6be8 100644 --- a/scenario_simulator_v2/package.xml +++ b/scenario_simulator_v2/package.xml @@ -2,7 +2,7 @@ scenario_simulator_v2 - 1.11.0 + 1.11.1 scenario testing framework for Autoware Masaya Kataoka Apache License 2.0 diff --git a/simulation/behavior_tree_plugin/CHANGELOG.rst b/simulation/behavior_tree_plugin/CHANGELOG.rst index c0cf15a2585..3b0eb29ae34 100644 --- a/simulation/behavior_tree_plugin/CHANGELOG.rst +++ b/simulation/behavior_tree_plugin/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package behavior_tree_plugin ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/simulation/behavior_tree_plugin/package.xml b/simulation/behavior_tree_plugin/package.xml index 54c4bde4659..31d130bb22a 100644 --- a/simulation/behavior_tree_plugin/package.xml +++ b/simulation/behavior_tree_plugin/package.xml @@ -2,7 +2,7 @@ behavior_tree_plugin - 1.11.0 + 1.11.1 Behavior tree plugin for traffic_simulator masaya Apache 2.0 diff --git a/simulation/do_nothing_plugin/CHANGELOG.rst b/simulation/do_nothing_plugin/CHANGELOG.rst index 44f9dd92cac..f648185d2b8 100644 --- a/simulation/do_nothing_plugin/CHANGELOG.rst +++ b/simulation/do_nothing_plugin/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package do_nothing_plugin ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/simulation/do_nothing_plugin/package.xml b/simulation/do_nothing_plugin/package.xml index 77c299b21aa..489822d27d1 100644 --- a/simulation/do_nothing_plugin/package.xml +++ b/simulation/do_nothing_plugin/package.xml @@ -2,7 +2,7 @@ do_nothing_plugin - 1.11.0 + 1.11.1 Behavior plugin for do nothing Masaya Kataoka Apache 2.0 diff --git a/simulation/simple_sensor_simulator/CHANGELOG.rst b/simulation/simple_sensor_simulator/CHANGELOG.rst index e97ef3a616d..90f42fc2a04 100644 --- a/simulation/simple_sensor_simulator/CHANGELOG.rst +++ b/simulation/simple_sensor_simulator/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package simple_sensor_simulator ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge pull request `#1173 `_ from tier4/feature/arm_support diff --git a/simulation/simple_sensor_simulator/package.xml b/simulation/simple_sensor_simulator/package.xml index 3096dd6bc3e..fc755129014 100644 --- a/simulation/simple_sensor_simulator/package.xml +++ b/simulation/simple_sensor_simulator/package.xml @@ -1,7 +1,7 @@ simple_sensor_simulator - 1.11.0 + 1.11.1 simple_sensor_simulator package masaya kataoka diff --git a/simulation/simulation_interface/CHANGELOG.rst b/simulation/simulation_interface/CHANGELOG.rst index 91f0df41b0e..c61c9001ecf 100644 --- a/simulation/simulation_interface/CHANGELOG.rst +++ b/simulation/simulation_interface/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package simulation_interface ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/simulation/simulation_interface/package.xml b/simulation/simulation_interface/package.xml index cc6ec38d3e5..37519f598b5 100644 --- a/simulation/simulation_interface/package.xml +++ b/simulation/simulation_interface/package.xml @@ -2,7 +2,7 @@ simulation_interface - 1.11.0 + 1.11.1 packages to define interface between simulator and scenario interpreter Masaya Kataoka Apache License 2.0 diff --git a/simulation/traffic_simulator/CHANGELOG.rst b/simulation/traffic_simulator/CHANGELOG.rst index c6bbc5cd8dc..6be976129d0 100644 --- a/simulation/traffic_simulator/CHANGELOG.rst +++ b/simulation/traffic_simulator/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package traffic_simulator ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/simulation/traffic_simulator/package.xml b/simulation/traffic_simulator/package.xml index a49053bfa01..1ca6055b65a 100644 --- a/simulation/traffic_simulator/package.xml +++ b/simulation/traffic_simulator/package.xml @@ -1,7 +1,7 @@ traffic_simulator - 1.11.0 + 1.11.1 control traffic flow masaya kataoka diff --git a/simulation/traffic_simulator_msgs/CHANGELOG.rst b/simulation/traffic_simulator_msgs/CHANGELOG.rst index 04bfbc46cef..51cbe2b265e 100644 --- a/simulation/traffic_simulator_msgs/CHANGELOG.rst +++ b/simulation/traffic_simulator_msgs/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package openscenario_msgs ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/simulation/traffic_simulator_msgs/package.xml b/simulation/traffic_simulator_msgs/package.xml index b5115b17672..f941442105d 100644 --- a/simulation/traffic_simulator_msgs/package.xml +++ b/simulation/traffic_simulator_msgs/package.xml @@ -2,7 +2,7 @@ traffic_simulator_msgs - 1.11.0 + 1.11.1 ROS messages for openscenario Masaya Kataoka Apache License 2.0 diff --git a/test_runner/random_test_runner/CHANGELOG.rst b/test_runner/random_test_runner/CHANGELOG.rst index 8a7e4c3d39b..9f4a6e4b06b 100644 --- a/test_runner/random_test_runner/CHANGELOG.rst +++ b/test_runner/random_test_runner/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package random_test_runner ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge branch 'master' of https://github.com/tier4/scenario_simulator_v2 into feature/arm_support diff --git a/test_runner/random_test_runner/package.xml b/test_runner/random_test_runner/package.xml index f4aad683fc9..6befeee6d94 100644 --- a/test_runner/random_test_runner/package.xml +++ b/test_runner/random_test_runner/package.xml @@ -2,7 +2,7 @@ random_test_runner - 1.11.0 + 1.11.1 Random behavior test runner piotr-zyskowski-rai Apache License 2.0 diff --git a/test_runner/scenario_test_runner/CHANGELOG.rst b/test_runner/scenario_test_runner/CHANGELOG.rst index ef4effd4bc7..10475ea49cf 100644 --- a/test_runner/scenario_test_runner/CHANGELOG.rst +++ b/test_runner/scenario_test_runner/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog for package scenario_test_runner ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +1.11.1 (2024-04-05) +------------------- + 1.11.0 (2024-04-02) ------------------- * Merge pull request `#1173 `_ from tier4/feature/arm_support diff --git a/test_runner/scenario_test_runner/package.xml b/test_runner/scenario_test_runner/package.xml index 34048cb60e8..7e1eeebc945 100644 --- a/test_runner/scenario_test_runner/package.xml +++ b/test_runner/scenario_test_runner/package.xml @@ -2,7 +2,7 @@ scenario_test_runner - 1.11.0 + 1.11.1 scenario test runner package Tatsuya Yamasaki Apache License 2.0