Skip to content

Commit 90b1b51

Browse files
committed
updated the CHANGELOG and version to release binary packages
1 parent 2b04526 commit 90b1b51

File tree

13 files changed

+73
-16
lines changed

13 files changed

+73
-16
lines changed

open_manipulator_with_tb3/CHANGELOG.rst

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

5+
1.0.1 (2018-06-04)
6+
------------------
7+
* added dependency package option
8+
* Contributors: Pyo
9+
510
1.0.0 (2018-06-01)
611
------------------
712
* updated the CHANGELOG and version to release binary packages

open_manipulator_with_tb3/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>open_manipulator_with_tb3</name>
4-
<version>1.0.0</version>
4+
<version>1.0.1</version>
55
<description>
66
ROS-enabled OpenManipulator is a full open robot platform consisting of OpenSoftware​, OpenHardware and OpenCR(Embedded board)​.
77
The OpenManipulator is allowed users to control it more easily by linking with the MoveIt! package. Moreover it has full hardware compatibility with TurtleBot3​.

open_manipulator_with_tb3_description/CHANGELOG.rst

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

5+
1.0.1 (2018-06-04)
6+
------------------
7+
* added dependency package option
8+
* Contributors: Pyo
9+
510
1.0.0 (2018-06-01)
611
------------------
712
* updated the CHANGELOG and version to release binary packages

open_manipulator_with_tb3_description/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>open_manipulator_with_tb3_description</name>
4-
<version>1.0.0</version>
4+
<version>1.0.1</version>
55
<description>
66
OpenManipulator 3D model description for visualization and simulation
77
</description>

open_manipulator_with_tb3_tools/CHANGELOG.rst

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

5+
1.0.1 (2018-06-04)
6+
------------------
7+
* added dependency package option
8+
* Contributors: Pyo
9+
510
1.0.0 (2018-06-01)
611
------------------
712
* updated the CHANGELOG and version to release binary packages

open_manipulator_with_tb3_tools/CMakeLists.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ find_package(catkin REQUIRED COMPONENTS
1717
geometry_msgs
1818
nav_msgs
1919
open_manipulator_msgs
20+
open_manipulator_with_tb3_msgs
2021
ar_track_alvar_msgs
2122
)
2223

@@ -37,7 +38,7 @@ catkin_python_setup()
3738
# Declare catkin specific configuration to be passed to dependent projects
3839
################################################################################
3940
catkin_package(
40-
CATKIN_DEPENDS rospy roscpp std_msgs geometry_msgs nav_msgs open_manipulator_msgs ar_track_alvar_msgs
41+
CATKIN_DEPENDS rospy roscpp std_msgs geometry_msgs nav_msgs open_manipulator_msgs open_manipulator_with_tb3_msgs ar_track_alvar_msgs
4142
)
4243

4344
################################################################################
@@ -50,11 +51,11 @@ include_directories(
5051

5152
add_executable(pick src/pick.cpp)
5253
add_dependencies(pick ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
53-
target_link_libraries(pick ${catkin_LIBRARIES} ${Eigen3_LIBRARIES})
54+
target_link_libraries(pick ${catkin_LIBRARIES})
5455

5556
add_executable(place src/place.cpp)
5657
add_dependencies(place ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
57-
target_link_libraries(place ${catkin_LIBRARIES} ${Eigen3_LIBRARIES})
58+
target_link_libraries(place ${catkin_LIBRARIES})
5859

5960
################################################################################
6061
# Install
@@ -64,11 +65,11 @@ catkin_install_python(PROGRAMS
6465
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
6566
)
6667

67-
install(TARGETS pick
68+
install(TARGETS pick place
6869
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
6970
)
7071

71-
install(DIRECTORY launch rviz config maps
72+
install(DIRECTORY config launch maps rviz
7273
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
7374
)
7475

open_manipulator_with_tb3_tools/package.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>open_manipulator_with_tb3_tools</name>
4-
<version>1.0.0</version>
4+
<version>1.0.1</version>
55
<description>
66
The tools package(including SLAM, Navigation, Manipulation) for OpenManipulator with TurtleBot3
77
</description>
@@ -20,6 +20,7 @@
2020
<depend>geometry_msgs</depend>
2121
<depend>nav_msgs</depend>
2222
<depend>open_manipulator_msgs</depend>
23+
<depend>open_manipulator_with_tb3_msgs</depend>
2324
<depend>ar_track_alvar_msgs</depend>
2425
<exec_depend>joint_state_publisher</exec_depend>
2526
<exec_depend>robot_state_publisher</exec_depend>

open_manipulator_with_tb3_tools/src/pick.cpp

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,30 @@
1+
/*******************************************************************************
2+
* Copyright 2018 ROBOTIS CO., LTD.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*******************************************************************************/
16+
17+
/* Authors: Darby Lim */
18+
119
#include <ros/ros.h>
220

321
#include <std_msgs/Float64.h>
422
#include <std_msgs/String.h>
5-
623
#include <geometry_msgs/PoseStamped.h>
724

825
#include <open_manipulator_msgs/SetJointPosition.h>
926
#include <open_manipulator_msgs/SetKinematicsPose.h>
10-
1127
#include <open_manipulator_msgs/State.h>
12-
1328
#include <open_manipulator_with_tb3_msgs/Pick.h>
1429

1530
#include <ar_track_alvar_msgs/AlvarMarkers.h>

open_manipulator_with_tb3_tools/src/place.cpp

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,30 @@
1+
/*******************************************************************************
2+
* Copyright 2018 ROBOTIS CO., LTD.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*******************************************************************************/
16+
17+
/* Authors: Darby Lim */
18+
119
#include <ros/ros.h>
220

321
#include <std_msgs/Float64.h>
422
#include <std_msgs/String.h>
5-
623
#include <geometry_msgs/PoseStamped.h>
724

825
#include <open_manipulator_msgs/SetJointPosition.h>
926
#include <open_manipulator_msgs/SetKinematicsPose.h>
10-
1127
#include <open_manipulator_msgs/State.h>
12-
1328
#include <open_manipulator_with_tb3_msgs/Place.h>
1429

1530
#include <ar_track_alvar_msgs/AlvarMarkers.h>

open_manipulator_with_tb3_waffle_moveit/CHANGELOG.rst

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

5+
1.0.1 (2018-06-04)
6+
------------------
7+
* added dependency package option
8+
* Contributors: Pyo
9+
510
1.0.0 (2018-06-01)
611
------------------
712
* updated the CHANGELOG and version to release binary packages

open_manipulator_with_tb3_waffle_moveit/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>open_manipulator_with_tb3_waffle_moveit</name>
4-
<version>1.0.0</version>
4+
<version>1.0.1</version>
55
<description>
66
An automatically generated packages including all the configurations and launch files for OpenManipulator with TurtleBot3 Waffle by using MoveIt! Motion Planning Framework.
77
</description>

open_manipulator_with_tb3_waffle_pi_moveit/CHANGELOG.rst

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

5+
1.0.1 (2018-06-04)
6+
------------------
7+
* added dependency package option
8+
* Contributors: Pyo
9+
510
1.0.0 (2018-06-01)
611
------------------
712
* updated the CHANGELOG and version to release binary packages

open_manipulator_with_tb3_waffle_pi_moveit/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>open_manipulator_with_tb3_waffle_pi_moveit</name>
4-
<version>1.0.0</version>
4+
<version>1.0.1</version>
55
<description>
66
An automatically generated packages including all the configurations and launch files for OpenManipulator with TurtleBot3 Waffle Pi by using MoveIt! Motion Planning Framework.
77
</description>

0 commit comments

Comments
 (0)