Skip to content

Commit 5ba840e

Browse files
committed
Version 1.7.0 release
1 parent 129fa0c commit 5ba840e

File tree

7 files changed

+19
-9
lines changed

7 files changed

+19
-9
lines changed

dynamicEDT3D/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ENABLE_TESTING()
55

66
# version (e.g. for packaging)
77
set(DYNAMICEDT3D_MAJOR_VERSION 1)
8-
set(DYNAMICEDT3D_MINOR_VERSION 6)
9-
set(DYNAMICEDT3D_PATCH_VERSION 8)
8+
set(DYNAMICEDT3D_MINOR_VERSION 7)
9+
set(DYNAMICEDT3D_PATCH_VERSION 0)
1010
set(DYNAMICEDT3D_VERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION}.${DYNAMICEDT3D_PATCH_VERSION})
1111
set(DYNAMICEDT3D_SOVERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION})
1212

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.8</version>
3+
<version>1.7.0</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="sprunkc@informatik.uni-freiburg.de">Christoph Sprunk</author>

octomap/CHANGELOG.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
v1.7.0: 2015-11-27
2+
==================
3+
- BBX iterators fixed for empty trees (thx to F. Boniardi)
4+
- graph2tree tool option for nodes in global frame
5+
- New octree2pointcloud PCL conversion tool (thx to F. Ferri)
6+
- Improved change detection / diff calculation (thx to C. Brew)
7+
- getUnknownLeafCenters now allows queries at a specified depth (thx to
8+
A. Ecins)
9+
- Fixed hashing overflow with clang (thx to L. Riano)
10+
111
v1.6.7: 2014-08-31
212
==================
313
- FSF address in octovis license header for OctoMap package in Fedora

octomap/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ ENABLE_TESTING()
55

66
# version (e.g. for packaging)
77
set(OCTOMAP_MAJOR_VERSION 1)
8-
set(OCTOMAP_MINOR_VERSION 6)
9-
set(OCTOMAP_PATCH_VERSION 8)
8+
set(OCTOMAP_MINOR_VERSION 7)
9+
set(OCTOMAP_PATCH_VERSION 0)
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.8</version>
3+
<version>1.7.0</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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ PROJECT( octovis )
33

44
# # version (e.g. for packaging)
55
set(OCTOVIS_MAJOR_VERSION 1)
6-
set(OCTOVIS_MINOR_VERSION 6)
7-
set(OCTOVIS_PATCH_VERSION 8)
6+
set(OCTOVIS_MINOR_VERSION 7)
7+
set(OCTOVIS_PATCH_VERSION 0)
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.8</version>
3+
<version>1.7.0</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)