Skip to content

Commit 857fd12

Browse files
committed
Merge branch 'devel' for v1.9.5 release
2 parents f8e16b5 + 2b4bdce commit 857fd12

File tree

7 files changed

+29
-10
lines changed

7 files changed

+29
-10
lines changed

dynamicEDT3D/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include(GNUInstallDirs)
77
# version (e.g. for packaging)
88
set(DYNAMICEDT3D_MAJOR_VERSION 1)
99
set(DYNAMICEDT3D_MINOR_VERSION 9)
10-
set(DYNAMICEDT3D_PATCH_VERSION 4)
10+
set(DYNAMICEDT3D_PATCH_VERSION 5)
1111
set(DYNAMICEDT3D_VERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION}.${DYNAMICEDT3D_PATCH_VERSION})
1212
set(DYNAMICEDT3D_SOVERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION})
1313

dynamicEDT3D/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package format="2">
22
<name>dynamic_edt_3d</name>
3-
<version>1.9.4</version>
3+
<version>1.9.5</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/CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v1.9.5: 2020-03-25
2+
==================
3+
- octovis: Update ROS dependencies to Qt5
4+
15
v1.9.4: 2020-03-15
26
==================
37
- octovis: Enable Qt5 by default

octomap/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include(GNUInstallDirs)
77
# version (e.g. for packaging)
88
set(OCTOMAP_MAJOR_VERSION 1)
99
set(OCTOMAP_MINOR_VERSION 9)
10-
set(OCTOMAP_PATCH_VERSION 4)
10+
set(OCTOMAP_PATCH_VERSION 5)
1111
set(OCTOMAP_VERSION ${OCTOMAP_MAJOR_VERSION}.${OCTOMAP_MINOR_VERSION}.${OCTOMAP_PATCH_VERSION})
1212
set(OCTOMAP_SOVERSION ${OCTOMAP_MAJOR_VERSION}.${OCTOMAP_MINOR_VERSION})
1313
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 format="2">
22
<name>octomap</name>
3-
<version>1.9.4</version>
3+
<version>1.9.5</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
@@ -7,7 +7,7 @@ include(GNUInstallDirs)
77
# # version (e.g. for packaging)
88
set(OCTOVIS_MAJOR_VERSION 1)
99
set(OCTOVIS_MINOR_VERSION 9)
10-
set(OCTOVIS_PATCH_VERSION 4)
10+
set(OCTOVIS_PATCH_VERSION 5)
1111
set(OCTOVIS_VERSION ${OCTOVIS_MAJOR_VERSION}.${OCTOVIS_MINOR_VERSION}.${OCTOVIS_PATCH_VERSION})
1212
set(OCTOVIS_SOVERSION ${OCTOVIS_MAJOR_VERSION}.${OCTOVIS_MINOR_VERSION})
1313
# get rid of a useless warning:

octovis/package.xml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package format="2">
22
<name>octovis</name>
3-
<version>1.9.4</version>
3+
<version>1.9.5</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

@@ -20,12 +20,27 @@
2020
</export>
2121

2222
<build_depend>octomap</build_depend>
23-
<build_depend>libqglviewer-qt4-dev</build_depend>
23+
24+
<!-- Qt5 -->
25+
<build_depend>libqglviewer-dev-qt5</build_depend>
26+
<build_depend>libqt5-core</build_depend>
27+
<build_depend>libqt5-opengl-dev</build_depend>
28+
29+
<!-- Qt4 -->
30+
<!-- <build_depend>libqglviewer-qt4-dev</build_depend>
2431
<build_depend>libqt4-dev</build_depend>
25-
<build_depend>libqt4-opengl-dev</build_depend>
32+
<build_depend>libqt4-opengl-dev</build_depend> -->
2633

2734
<exec_depend>octomap</exec_depend>
28-
<exec_depend>libqglviewer-qt4</exec_depend>
35+
36+
<!-- Qt5 -->
37+
<exec_depend>libqglviewer2-qt5</exec_depend>
38+
<exec_depend>libqt5-core</exec_depend>
39+
<exec_depend>libqt5-gui</exec_depend>
40+
<exec_depend>libqt5-opengl</exec_depend>
41+
42+
<!-- Qt4 -->
43+
<!-- <exec_depend>libqglviewer-qt4</exec_depend>
2944
<exec_depend>libqtgui4</exec_depend>
30-
<exec_depend>libqt4-opengl</exec_depend>
45+
<exec_depend>libqt4-opengl</exec_depend> -->
3146
</package>

0 commit comments

Comments
 (0)