Skip to content

Commit 4f01275

Browse files
committed
Version 1.9.0 release
1 parent 14581c4 commit 4f01275

File tree

7 files changed

+21
-6
lines changed

7 files changed

+21
-6
lines changed

dynamicEDT3D/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(CTest)
55

66
# version (e.g. for packaging)
77
set(DYNAMICEDT3D_MAJOR_VERSION 1)
8-
set(DYNAMICEDT3D_MINOR_VERSION 8)
8+
set(DYNAMICEDT3D_MINOR_VERSION 9)
99
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})

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.8.0</version>
3+
<version>1.9.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="[email protected]">Christoph Sprunk</author>

octomap/CHANGELOG.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
v1.9.0: 2017-04-28
2+
==================
3+
- Fixed getUnknownLeafCenters to return true leaf centers (thx to A. Ecins)
4+
- dynamicEDT3D templated over OctoMap type (thx to J.V. Gomez)
5+
- Added optimized rendering option and command line option for tree cutoff
6+
in octovis (thx to F. Endres)
7+
- Added optional Qt5 support in octovis (thx to K. Stepanas)
8+
- Improved the generation of config.cmake and version.cmake files, make them
9+
relocatable via CONFIGURE_PACKAGE_CONFIG_FILE (thx to J.V. Gomez)
10+
- Enable rpath on OS X when the CMake version supports it (thx to J. Snape)
11+
- Added version information to *-config.cmake files and exported targets to
12+
CMakeLists.txt (thx to J. Snape)
13+
- Improved CMake build by specifically targeting local includes (thx to
14+
C.-E. Hrabia)
15+
116
v1.8.1: 2017-01-13
217
==================
318
- Disambiguated isnan (C++11)

octomap/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(CTest)
55

66
# version (e.g. for packaging)
77
set(OCTOMAP_MAJOR_VERSION 1)
8-
set(OCTOMAP_MINOR_VERSION 8)
8+
set(OCTOMAP_MINOR_VERSION 9)
99
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})

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.8.0</version>
3+
<version>1.9.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include(CTest)
55

66
# # version (e.g. for packaging)
77
set(OCTOVIS_MAJOR_VERSION 1)
8-
set(OCTOVIS_MINOR_VERSION 8)
8+
set(OCTOVIS_MINOR_VERSION 9)
99
set(OCTOVIS_PATCH_VERSION 0)
1010
set(OCTOVIS_VERSION ${OCTOVIS_MAJOR_VERSION}.${OCTOVIS_MINOR_VERSION}.${OCTOVIS_PATCH_VERSION})
1111
set(OCTOVIS_SOVERSION ${OCTOVIS_MAJOR_VERSION}.${OCTOVIS_MINOR_VERSION})

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.8.0</version>
3+
<version>1.9.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)