Skip to content

Commit b15d2ab

Browse files
committed
updated the CHANGELOG and version to release binary packages
1 parent 45f57c8 commit b15d2ab

File tree

10 files changed

+51
-15
lines changed

10 files changed

+51
-15
lines changed

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1-
# ROBOTIS Framework Metapackage
2-
[![GitHub version](https://badge.fury.io/gh/ROBOTIS-GIT%2FROBOTIS-Framework.svg)](https://badge.fury.io/gh/ROBOTIS-GIT%2FROBOTIS-Framework) [![Build Status](https://travis-ci.org/ROBOTIS-GIT/ROBOTIS-Framework.svg?branch=master)](https://travis-ci.org/ROBOTIS-GIT/ROBOTIS-Framework)
1+
## ROS Packages for ROBOTIS Framework
2+
|Version|Kinetic + Ubuntu Xenial|Melodic + Ubuntu Bionic|
3+
|:---:|:---:|:---:|
4+
|[![GitHub version](https://badge.fury.io/gh/ROBOTIS-GIT%2FROBOTIS-Framework.svg)](https://badge.fury.io/gh/ROBOTIS-GIT%2FROBOTIS-Framework)|[![Build Status](https://travis-ci.org/ROBOTIS-GIT/ROBOTIS-Framework.svg?branch=master)](https://travis-ci.org/ROBOTIS-GIT/ROBOTIS-Framework)|-|
35

4-
# Documents for robotis_framework packages
5-
- [ROBOTIS e-Manual](http://emanual.robotis.com/docs/en/software/robotis_framework_packages/#robotis-framework)
6-
- http://wiki.ros.org/robotis_framework
6+
## ROBOTIS e-Manual for ROBOTIS Framework
7+
- [ROBOTIS e-Manual for ROBOTIS Framework](http://emanual.robotis.com/docs/en/software/robotis_framework_packages)
8+
9+
## Wiki for robotis_framework Packages
10+
- http://wiki.ros.org/robotis_framework (metapackage)
711
- http://wiki.ros.org/robotis_controller
812
- http://wiki.ros.org/robotis_device
913
- http://wiki.ros.org/robotis_framework_common
1014

11-
# ROS packages related to ROBOTIS Framework
12-
- [dynamixel_sdk](https://github.com/ROBOTIS-GIT/DynamixelSDK)
15+
## Open Source related to ROBOTIS Framework
1316
- [robotis_framework](https://github.com/ROBOTIS-GIT/ROBOTIS-Framework)
1417
- [robotis_controller_msgs](https://github.com/ROBOTIS-GIT/ROBOTIS-Framework-msgs)
18+
- [dynamixel_sdk](https://github.com/ROBOTIS-GIT/DynamixelSDK)
1519

16-
# Documents and Videos for ROBOTIS Framework
17-
- [ROBOTIS e-Manual for Dynamixel SDK](http://emanual.robotis.com/docs/en/software/dynamixel/dynamixel_sdk/overview/)
18-
- [ROBOTIS e-Manual for ROBOTIS Framework](http://emanual.robotis.com/docs/en/software/robotis_framework_packages/)
20+
## Documents and Videos related to ROBOTIS Framework
21+
- [ROBOTIS e-Manual for ROBOTIS Framework](http://emanual.robotis.com/docs/en/software/robotis_framework_packages/)
22+
- [ROBOTIS e-Manual for Dynamixel SDK](http://emanual.robotis.com/docs/en/software/dynamixel/dynamixel_sdk/overview/)

robotis_controller/CHANGELOG.rst

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

5+
0.2.9 (2018-03-22)
6+
------------------
7+
* added serivce for setting module
8+
* deleted comment for debug
9+
* modified to prevent duplicate indirect address write
10+
* added boost system dependencies
11+
* fixed a bug that occure when handling bulk read item that does not exist.
12+
* Contributors: Kayman, Zerom, Pyo
13+
514
0.2.8 (2018-03-20)
615
------------------
716
* modified CMakeLists.txt for system dependencies (yaml-cpp)

robotis_controller/CMakeLists.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ find_package(catkin REQUIRED COMPONENTS
2222
cmake_modules
2323
)
2424

25+
find_package(Boost REQUIRED)
26+
2527
# Resolve system dependency on yaml-cpp, which apparently does not
2628
# provide a CMake find_package() module.
2729
find_package(PkgConfig REQUIRED)
@@ -59,6 +61,7 @@ catkin_package(
5961
INCLUDE_DIRS include
6062
LIBRARIES robotis_controller
6163
CATKIN_DEPENDS roscpp roslib std_msgs sensor_msgs robotis_controller_msgs dynamixel_sdk robotis_device robotis_framework_common cmake_modules
64+
DEPENDS Boost
6265
)
6366

6467
################################################################################
@@ -67,12 +70,13 @@ catkin_package(
6770
include_directories(
6871
include
6972
${catkin_INCLUDE_DIRS}
73+
${Boost_INCLUDE_DIRS}
7074
${YAML_CPP_INCLUDE_DIRS}
7175
)
7276

7377
add_library(robotis_controller src/robotis_controller/robotis_controller.cpp)
7478
add_dependencies(robotis_controller ${catkin_EXPORTED_TARGETS})
75-
target_link_libraries(robotis_controller ${catkin_LIBRARIES} ${YAML_CPP_LIBRARIES})
79+
target_link_libraries(robotis_controller ${catkin_LIBRARIES} ${Boost_LIBRARIES} ${YAML_CPP_LIBRARIES})
7680

7781
################################################################################
7882
# Install

robotis_controller/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>robotis_controller</name>
4-
<version>0.2.8</version>
4+
<version>0.2.9</version>
55
<description>
66
robotis_controller package for ROBOTIS's platform like Manipulator-H, THORMANG and OP series
77
</description>

robotis_device/CHANGELOG.rst

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

5+
0.2.9 (2018-03-22)
6+
------------------
7+
* modified to prevent duplicate indirect address write
8+
* fixed a bug that occure when handling bulk read item that does not exist
9+
* Contributors: Zerom
10+
511
0.2.8 (2018-03-20)
612
------------------
713
* added RH-P12-RN.device file

robotis_device/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>robotis_device</name>
4-
<version>0.2.8</version>
4+
<version>0.2.9</version>
55
<description>
66
The package that manages device information of ROBOTIS robots.
77
This package is used when reading device information with the robot information file

robotis_framework/CHANGELOG.rst

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

5+
0.2.9 (2018-03-22)
6+
------------------
7+
* added serivce for setting module
8+
* deleted comment for debug
9+
* modified to prevent duplicate indirect address write
10+
* added boost system dependencies
11+
* fixed a bug that occure when handling bulk read item that does not exist
12+
* Contributors: Kayman, Zerom, Pyo
13+
514
0.2.8 (2018-03-20)
615
------------------
716
* added RH-P12-RN.device file

robotis_framework/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>robotis_framework</name>
4-
<version>0.2.8</version>
4+
<version>0.2.9</version>
55
<description>
66
ROS packages for the robotis_framework (meta package)
77
</description>

robotis_framework_common/CHANGELOG.rst

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

5+
0.2.9 (2018-03-22)
6+
------------------
7+
* none
8+
59
0.2.8 (2018-03-20)
610
------------------
711
* tested for system dependencies

robotis_framework_common/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>robotis_framework_common</name>
4-
<version>0.2.8</version>
4+
<version>0.2.9</version>
55
<description>
66
The package contains commonly used Headers for the ROBOTIS Framework.
77
</description>

0 commit comments

Comments
 (0)