Skip to content

Commit d4d2a78

Browse files
committed
updated the CHANGELOG and version to release binary packages
1 parent 1452436 commit d4d2a78

File tree

4 files changed

+27
-8
lines changed

4 files changed

+27
-8
lines changed

CHANGELOG.rst

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

5+
1.0.0 (2018-05-29)
6+
------------------
7+
* added sensors
8+
* deleted unused msg and srv
9+
* separated turtlebot3_msgs and applications related messages
10+
* merged pull request `#10 <https://github.com/ROBOTIS-GIT/turtlebot3_msgs/issues/10>`_ `#9 <https://github.com/ROBOTIS-GIT/turtlebot3_msgs/issues/9>`_ `#8 <https://github.com/ROBOTIS-GIT/turtlebot3_msgs/issues/8>`_ `#7 <https://github.com/ROBOTIS-GIT/turtlebot3_msgs/issues/7>`_
11+
* Contributors: Darby Lim, Gilbert, Pyo
12+
513
0.1.5 (2018-03-14)
614
------------------
715
* modified CMakeLists.txt and package for package format v2

CMakeLists.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
################################################################################
2-
# CMake
2+
# Set minimum required version of cmake, project name and compile options
33
################################################################################
44
cmake_minimum_required(VERSION 2.8.3)
55
project(turtlebot3_msgs)
66

77
################################################################################
8-
# Packages
8+
# Find catkin packages and libraries for catkin and system dependencies
99
################################################################################
1010
find_package(catkin REQUIRED COMPONENTS
1111
std_msgs
1212
message_generation
1313
)
1414

15+
################################################################################
16+
# Setup for python modules and scripts
17+
################################################################################
18+
1519
################################################################################
1620
# Declare ROS messages, services and actions
1721
################################################################################
1822
add_message_files(
19-
DIRECTORY msg
2023
FILES
2124
SensorState.msg
2225
VersionInfo.msg
@@ -33,7 +36,7 @@ generate_messages(
3336
################################################################################
3437

3538
################################################################################
36-
# Catkin specific configuration
39+
# Declare catkin specific configuration to be passed to dependent projects
3740
################################################################################
3841
catkin_package(
3942
CATKIN_DEPENDS std_msgs message_runtime

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,18 @@
1717
- [turtlebot3](https://github.com/ROBOTIS-GIT/turtlebot3)
1818
- [turtlebot3_msgs](https://github.com/ROBOTIS-GIT/turtlebot3_msgs)
1919
- [turtlebot3_simulations](https://github.com/ROBOTIS-GIT/turtlebot3_simulations)
20+
- [turtlebot3_applications_msgs](https://github.com/ROBOTIS-GIT/turtlebot3_applications_msgs)
2021
- [turtlebot3_applications](https://github.com/ROBOTIS-GIT/turtlebot3_applications)
2122
- [turtlebot3_autorace](https://github.com/ROBOTIS-GIT/turtlebot3_autorace)
2223
- [turtlebot3_deliver](https://github.com/ROBOTIS-GIT/turtlebot3_deliver)
2324
- [hls_lfcd_lds_driver](https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver)
25+
- [open_manipulator_msgs](https://github.com/ROBOTIS-GIT/open_manipulator_msgs)
2426
- [open_manipulator](https://github.com/ROBOTIS-GIT/open_manipulator)
27+
- [open_manipulator_simulations](https://github.com/ROBOTIS-GIT/open_manipulator_simulations)
28+
- [open_manipulator_perceptions](https://github.com/ROBOTIS-GIT/open_manipulator_perceptions)
29+
- [open_manipulator_with_tb3_msgs](https://github.com/ROBOTIS-GIT/open_manipulator_with_tb3_msgs)
30+
- [open_manipulator_with_tb3](https://github.com/ROBOTIS-GIT/open_manipulator_with_tb3)
31+
- [open_manipulator_with_tb3_simulations](https://github.com/ROBOTIS-GIT/open_manipulator_with_tb3_simulations)
2532
- [dynamixel_sdk](https://github.com/ROBOTIS-GIT/DynamixelSDK)
2633
- [dynamixel_workbench](https://github.com/ROBOTIS-GIT/dynamixel-workbench)
2734
- [OpenCR-Hardware](https://github.com/ROBOTIS-GIT/OpenCR-Hardware)

package.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>turtlebot3_msgs</name>
4-
<version>0.1.5</version>
4+
<version>1.0.0</version>
55
<description>
66
Message and service types: custom messages and services for TurtleBot3 packages
77
</description>
88
<license>Apache 2.0</license>
99
<author email="[email protected]">Pyo</author>
1010
<author email="[email protected]">Darby Lim</author>
11+
<author email="[email protected]">Gilbert</author>
1112
<maintainer email="[email protected]">Pyo</maintainer>
12-
<url type="bugtracker">https://github.com/ROBOTIS-GIT/turtlebot3_msgs/issues</url>
13+
<url type="website">http://wiki.ros.org/turtlebot3_msgs</url>
14+
<url type="emanual">http://turtlebot3.robotis.com</url>
1315
<url type="repository">https://github.com/ROBOTIS-GIT/turtlebot3_msgs</url>
14-
<url type="website">http://turtlebot3.robotis.com</url>
15-
<buildtool_depend>catkin</buildtool_depend>
16+
<url type="bugtracker">https://github.com/ROBOTIS-GIT/turtlebot3_msgs/issues</url> <buildtool_depend>catkin</buildtool_depend>
1617
<depend>std_msgs</depend>
1718
<build_depend>message_generation</build_depend>
1819
<build_export_depend>message_runtime</build_export_depend>

0 commit comments

Comments
 (0)