Skip to content

Commit 17c3faf

Browse files
committed
Merge branch 'devel'
2 parents 0cc56b4 + 5661fc8 commit 17c3faf

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

dynamicEDT3D/CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v1.6.8: 2014-09-06
2+
==================
3+
- fixing package.xml installation location, now in /share/dynamic_edt_3d
4+
15
v1.6.7: 2014-08-31
26
==================
37
- Support for SOVERSION in the library for better packaging

dynamicEDT3D/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENABLE_TESTING()
66
# version (e.g. for packaging)
77
set(DYNAMICEDT3D_MAJOR_VERSION 1)
88
set(DYNAMICEDT3D_MINOR_VERSION 6)
9-
set(DYNAMICEDT3D_PATCH_VERSION 7)
9+
set(DYNAMICEDT3D_PATCH_VERSION 8)
1010
set(DYNAMICEDT3D_VERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION}.${DYNAMICEDT3D_PATCH_VERSION})
1111
set(DYNAMICEDT3D_SOVERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION})
1212

@@ -51,8 +51,8 @@ ADD_SUBDIRECTORY(src)
5151
file(GLOB dynamicEDT3D_HDRS ${PROJECT_SOURCE_DIR}/include/dynamicEDT3D/*.h ${PROJECT_SOURCE_DIR}/include/dynamicEDT3D/*.hxx)
5252
install(FILES ${dynamicEDT3D_HDRS} DESTINATION include/dynamicEDT3D)
5353

54-
# Install catkin package.xml
55-
install(FILES package.xml DESTINATION share/dynamicEDT3D)
54+
# Install catkin package.xml, attention package.xml names the catkin package "dynamic_edt_3d", so this is also the location where it needs to be installed to (and not "dynamicEDT3D")
55+
install(FILES package.xml DESTINATION share/dynamic_edt_3d)
5656

5757
#TODO: this conflicts with the octomap uninstall
5858
#it is not only a target name problem, also both will use the same manifest file

dynamicEDT3D/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package>
22
<name>dynamic_edt_3d</name>
3-
<version>1.6.7</version>
3+
<version>1.6.8</version>
44
<description> The dynamicEDT3D library implements an inrementally updatable Euclidean distance transform (EDT) in 3D. It comes with a wrapper to use the OctoMap 3D representation and hooks into the change detection of the OctoMap library to propagate changes to the EDT.</description>
55

66
<author email="[email protected]">Christoph Sprunk</author>

octomap/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENABLE_TESTING()
66
# version (e.g. for packaging)
77
set(OCTOMAP_MAJOR_VERSION 1)
88
set(OCTOMAP_MINOR_VERSION 6)
9-
set(OCTOMAP_PATCH_VERSION 7)
9+
set(OCTOMAP_PATCH_VERSION 8)
1010
set(OCTOMAP_VERSION ${OCTOMAP_MAJOR_VERSION}.${OCTOMAP_MINOR_VERSION}.${OCTOMAP_PATCH_VERSION})
1111
set(OCTOMAP_SOVERSION ${OCTOMAP_MAJOR_VERSION}.${OCTOMAP_MINOR_VERSION})
1212
if(COMMAND cmake_policy)

octomap/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package>
22
<name>octomap</name>
3-
<version>1.6.7</version>
3+
<version>1.6.8</version>
44
<description>The OctoMap library implements a 3D occupancy grid mapping approach, providing data structures and mapping algorithms in C++. The map implementation is based on an octree. See
55
http://octomap.github.io for details.</description>
66

octovis/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PROJECT( octovis )
44
# # version (e.g. for packaging)
55
set(OCTOVIS_MAJOR_VERSION 1)
66
set(OCTOVIS_MINOR_VERSION 6)
7-
set(OCTOVIS_PATCH_VERSION 7)
7+
set(OCTOVIS_PATCH_VERSION 8)
88
set(OCTOVIS_VERSION ${OCTOVIS_MAJOR_VERSION}.${OCTOVIS_MINOR_VERSION}.${OCTOVIS_PATCH_VERSION})
99
set(OCTOVIS_SOVERSION ${OCTOVIS_MAJOR_VERSION}.${OCTOVIS_MINOR_VERSION})
1010
# get rid of a useless warning:

octovis/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package>
22
<name>octovis</name>
3-
<version>1.6.7</version>
3+
<version>1.6.8</version>
44
<description>octovis is visualization tool for the OctoMap library based on Qt and libQGLViewer. See
55
http://octomap.github.io for details.</description>
66

0 commit comments

Comments
 (0)