Skip to content

Commit 4a67471

Browse files
committed
updated the CHANGELOG and version to release binary packages
1 parent ee4aef4 commit 4a67471

File tree

18 files changed

+94
-31
lines changed

18 files changed

+94
-31
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,18 @@
2121
- [turtlebot3](https://github.com/ROBOTIS-GIT/turtlebot3)
2222
- [turtlebot3_msgs](https://github.com/ROBOTIS-GIT/turtlebot3_msgs)
2323
- [turtlebot3_simulations](https://github.com/ROBOTIS-GIT/turtlebot3_simulations)
24+
- [turtlebot3_applications_msgs](https://github.com/ROBOTIS-GIT/turtlebot3_applications_msgs)
2425
- [turtlebot3_applications](https://github.com/ROBOTIS-GIT/turtlebot3_applications)
2526
- [turtlebot3_autorace](https://github.com/ROBOTIS-GIT/turtlebot3_autorace)
2627
- [turtlebot3_deliver](https://github.com/ROBOTIS-GIT/turtlebot3_deliver)
2728
- [hls_lfcd_lds_driver](https://github.com/ROBOTIS-GIT/hls_lfcd_lds_driver)
29+
- [open_manipulator_msgs](https://github.com/ROBOTIS-GIT/open_manipulator_msgs)
2830
- [open_manipulator](https://github.com/ROBOTIS-GIT/open_manipulator)
31+
- [open_manipulator_simulations](https://github.com/ROBOTIS-GIT/open_manipulator_simulations)
32+
- [open_manipulator_perceptions](https://github.com/ROBOTIS-GIT/open_manipulator_perceptions)
33+
- [open_manipulator_with_tb3_msgs](https://github.com/ROBOTIS-GIT/open_manipulator_with_tb3_msgs)
34+
- [open_manipulator_with_tb3](https://github.com/ROBOTIS-GIT/open_manipulator_with_tb3)
35+
- [open_manipulator_with_tb3_simulations](https://github.com/ROBOTIS-GIT/open_manipulator_with_tb3_simulations)
2936
- [dynamixel_sdk](https://github.com/ROBOTIS-GIT/DynamixelSDK)
3037
- [dynamixel_workbench](https://github.com/ROBOTIS-GIT/dynamixel-workbench)
3138
- [OpenCR-Hardware](https://github.com/ROBOTIS-GIT/OpenCR-Hardware)

turtlebot3_applications/CHANGELOG.rst

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

5+
1.0.0 (2018-05-29)
6+
------------------
7+
* added turtlebot3_automatic_parking
8+
* added turtlebot3_automatic_parking_vision
9+
* deleted unused msg
10+
* modified msg to use turtlebot3_applications_msg package
11+
* merged pull request `#18 <https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues/18>`_ `#17 <https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues/17>`_ `#16 <https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues/16>`_ `#14 <https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues/14>`_
12+
* Contributors: Darby Lim, Leon Jung, Gilbert, Pyo
13+
514
0.2.0 (2018-04-20)
615
------------------
716
* added turtlebot3 automatic parking vision example source code (turtlebot3_automatic_parking_vision)

turtlebot3_applications/package.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>turtlebot3_applications</name>
4-
<version>0.2.0</version>
4+
<version>1.0.0</version>
55
<description>
66
ROS packages for the turtlebot3 applications (meta package)
77
</description>
88
<license>Apache 2.0</license>
99
<license>BSD</license>
1010
<author email="[email protected]">Gilbert</author>
1111
<author email="[email protected]">Darby Lim</author>
12-
<author email="[email protected]">Leon Jung</author>
1312
<author email="[email protected]">Pyo</author>
1413
<author>Christopher Tatsch</author>
1514
<author>Ashe Kim</author>
15+
<author>Leon Jung</author>
1616
<maintainer email="[email protected]">Pyo</maintainer>
17-
<url type="website">http://wiki.ros.org/turtlebot3</url>
17+
<url type="website">http://wiki.ros.org/turtlebot3_applications</url>
1818
<url type="emanual">http://turtlebot3.robotis.com</url>
1919
<url type="repository">https://github.com/ROBOTIS-GIT/turtlebot3_applications</url>
2020
<url type="bugtracker">https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues</url>

turtlebot3_automatic_parking/CHANGELOG.rst

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

5+
1.0.0 (2018-05-29)
6+
------------------
7+
* added turtlebot3_automatic_parking
8+
* merged pull request `#14 <https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues/14>`_
9+
* Contributors: Gilbert
10+
511
0.2.0 (2018-04-20)
612
------------------
713
* added angles of center, start, end into spot filter

turtlebot3_automatic_parking/CMakeLists.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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_automatic_parking)
66

77
################################################################################
8-
# Packages
8+
# Find catkin packages and libraries for catkin and system dependencies
99
################################################################################
1010
find_package(catkin REQUIRED COMPONENTS
1111
rospy
@@ -15,6 +15,10 @@ find_package(catkin REQUIRED COMPONENTS
1515
nav_msgs
1616
)
1717

18+
################################################################################
19+
# Setup for python modules and scripts
20+
################################################################################
21+
1822
################################################################################
1923
# Declare ROS messages, services and actions
2024
################################################################################
@@ -24,7 +28,7 @@ find_package(catkin REQUIRED COMPONENTS
2428
################################################################################
2529

2630
################################################################################
27-
# Catkin specific configuration
31+
# Declare catkin specific configuration to be passed to dependent projects
2832
################################################################################
2933
catkin_package(
3034
CATKIN_DEPENDS rospy std_msgs sensor_msgs geometry_msgs nav_msgs

turtlebot3_automatic_parking/package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>turtlebot3_automatic_parking</name>
4-
<version>0.2.0</version>
4+
<version>1.0.0</version>
55
<description>
66
Package for turtlebot3 automatic_parking. You need a reflective tape and real robots. You can see parking spot using this pacakge on rviz.
77
</description>
88
<license>Apache 2.0</license>
99
<author email="[email protected]">Gilbert</author>
1010
<maintainer email="[email protected]">Pyo</maintainer>
11-
<url type="website">http://wiki.ros.org/turtlebot3</url>
11+
<url type="website">http://wiki.ros.org/turtlebot3_automatic_parking</url>
1212
<url type="emanual">http://turtlebot3.robotis.com</url>
1313
<url type="repository">https://github.com/ROBOTIS-GIT/turtlebot3_applications</url>
1414
<url type="bugtracker">https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues</url>

turtlebot3_automatic_parking_vision/CHANGELOG.rst

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

5+
1.0.0 (2018-05-29)
6+
------------------
7+
* added turtlebot3_automatic_parking_vision
8+
* merged pull request `#14 <https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues/14>`_
9+
* Contributors: Leon Jung
10+
511
0.2.0 (2018-04-20)
612
------------------
713
* added turtlebot3 automatic parking vision example source code

turtlebot3_automatic_parking_vision/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
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_automatic_parking_vision)
66

77
################################################################################
8-
# Packages
8+
# Find catkin packages and libraries for catkin and system dependencies
99
################################################################################
1010
find_package(catkin REQUIRED COMPONENTS
1111
rospy
@@ -31,7 +31,7 @@ catkin_python_setup()
3131
################################################################################
3232

3333
################################################################################
34-
# Catkin specific configuration
34+
# Declare catkin specific configuration to be passed to dependent projects
3535
################################################################################
3636
catkin_package(
3737
CATKIN_DEPENDS rospy std_msgs sensor_msgs geometry_msgs nav_msgs ar_track_alvar ar_track_alvar_msgs
@@ -52,7 +52,7 @@ catkin_install_python(PROGRAMS
5252
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
5353
)
5454

55-
install(DIRECTORY rviz
55+
install(DIRECTORY launch rviz
5656
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
5757
)
5858

turtlebot3_automatic_parking_vision/package.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0"?>
22
<package format="2">
33
<name>turtlebot3_automatic_parking_vision</name>
4-
<version>0.2.0</version>
4+
<version>1.0.0</version>
55
<description>
66
Package for TurtleBot3 automatic_parking which uses ar code. This example needs a printed ar code and a TurtleBot3.
77
</description>
88
<license>Apache 2.0</license>
9-
<author email="[email protected]">Leon Jung</author>
9+
<author>Leon Jung</author>
1010
<maintainer email="[email protected]">Pyo</maintainer>
11-
<url type="website">http://wiki.ros.org/turtlebot3</url>
11+
<url type="website">http://wiki.ros.org/turtlebot3_automatic_parking_vision</url>
1212
<url type="emanual">http://turtlebot3.robotis.com</url>
1313
<url type="repository">https://github.com/ROBOTIS-GIT/turtlebot3_applications</url>
1414
<url type="bugtracker">https://github.com/ROBOTIS-GIT/turtlebot3_applications/issues</url>

turtlebot3_follow_filter/CHANGELOG.rst

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

5+
1.0.0 (2018-05-29)
6+
------------------
7+
* none
8+
59
0.2.0 (2018-04-20)
610
------------------
711
* none

0 commit comments

Comments
 (0)