Skip to content

Commit d989240

Browse files
authored
Merge pull request #87 from ROBOTIS-GIT/main
Bump 2.2.1
2 parents 2323076 + a79b0cf commit d989240

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+264
-1837
lines changed

.github/workflows/ros-lint.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# The name of the workflow
2+
name: Lint
3+
4+
# Specifies the events that trigger the workflow
5+
on:
6+
pull_request:
7+
8+
# Defines a set of jobs to be run as part of the workflow
9+
jobs:
10+
ament_lint:
11+
runs-on: ubuntu-latest
12+
container:
13+
image: rostooling/setup-ros-docker:ubuntu-noble-ros-rolling-ros-base-latest
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
linter: [cppcheck, cpplint, uncrustify, flake8, pep257, lint_cmake, xmllint, copyright]
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v4
21+
22+
- name: Setup ROS environment
23+
uses: ros-tooling/setup-ros@v0.7
24+
25+
- name: Run Linter
26+
env:
27+
AMENT_CPPCHECK_ALLOW_SLOW_VERSIONS: 1
28+
uses: ros-tooling/action-ros-lint@master
29+
with:
30+
linter: ${{ matrix.linter }}
31+
distribution: rolling
32+
package-name: "*"

turtlebot3_manipulation/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package turtlebot3_manipulation
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.2.1 (2025-05-28)
6+
------------------
7+
* Removed the TurtleBot3 Manipulation Gazebo simulation
8+
* Contributors: ChanHyeong Lee
9+
510
2.2.0 (2025-04-01)
611
------------------
712
* Added gripper control in teleoperation.

turtlebot3_manipulation/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>turtlebot3_manipulation</name>
5-
<version>2.2.0</version>
5+
<version>2.2.1</version>
66
<description>
77
ROS 2 package for turtlebot3_manipulation
88
</description>

turtlebot3_manipulation_bringup/CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Changelog for package turtlebot3_manipulation_bringup
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
2.2.1 (2025-05-28)
6+
------------------
7+
* Removed the TurtleBot3 Manipulation Gazebo simulation
8+
* Contributors: ChanHyeong Lee
9+
510
2.2.0 (2025-04-01)
611
------------------
712
* Updated maintainer information

turtlebot3_manipulation_bringup/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ find_package(ament_cmake REQUIRED)
1313
# Install
1414
################################################################################
1515
install(
16-
DIRECTORY launch config rviz worlds
16+
DIRECTORY launch config rviz
1717
DESTINATION share/${PROJECT_NAME}
1818
)
1919

turtlebot3_manipulation_bringup/launch/base.launch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def generate_launch_description():
133133
('~/cmd_vel_unstamped', 'cmd_vel'),
134134
('~/odom', 'odom')
135135
],
136-
output="both",
136+
output='both',
137137
condition=UnlessCondition(use_sim))
138138

139139
robot_state_pub_node = Node(

turtlebot3_manipulation_bringup/launch/fake.launch.py

Lines changed: 0 additions & 79 deletions
This file was deleted.

turtlebot3_manipulation_bringup/launch/gazebo.launch.py

Lines changed: 0 additions & 158 deletions
This file was deleted.

turtlebot3_manipulation_bringup/launch/hardware.launch.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@
2222
from launch.actions import DeclareLaunchArgument
2323
from launch.actions import IncludeLaunchDescription
2424
from launch.launch_description_sources import PythonLaunchDescriptionSource
25-
from launch.substitutions import PathJoinSubstitution
2625
from launch.substitutions import LaunchConfiguration
26+
from launch.substitutions import PathJoinSubstitution
2727
from launch.substitutions import ThisLaunchFileDir
28-
2928
from launch_ros.substitutions import FindPackageShare
3029

3130

turtlebot3_manipulation_bringup/package.xml

Lines changed: 1 addition & 3 deletions
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>turtlebot3_manipulation_bringup</name>
5-
<version>2.2.0</version>
5+
<version>2.2.1</version>
66
<description>
77
ROS 2 package for turtlebot3_manipulation
88
</description>
@@ -14,11 +14,9 @@
1414
<author email="thlim@robotis.com">Darby Lim</author>
1515
<author email="hjkim@robotis.com">Hye-jong KIM</author>
1616
<buildtool_depend>ament_cmake</buildtool_depend>
17-
<exec_depend>gazebo_ros</exec_depend>
1817
<exec_depend>robot_state_publisher</exec_depend>
1918
<exec_depend>ros2_control</exec_depend>
2019
<exec_depend>ros2_controllers</exec_depend>
21-
<exec_depend>gripper_controllers</exec_depend>
2220
<exec_depend>rviz2</exec_depend>
2321
<exec_depend>turtlebot3_manipulation_description</exec_depend>
2422
<exec_depend>xacro</exec_depend>

0 commit comments

Comments
 (0)