Skip to content

Commit b8c1d62

Browse files
committed
v1.8.1 patch release
1 parent 4f94ae3 commit b8c1d62

File tree

7 files changed

+12
-6
lines changed

7 files changed

+12
-6
lines changed

Diff for: dynamicEDT3D/CMakeLists.txt

+1-1
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 8)
9-
set(DYNAMICEDT3D_PATCH_VERSION 0)
9+
set(DYNAMICEDT3D_PATCH_VERSION 1)
1010
set(DYNAMICEDT3D_VERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION}.${DYNAMICEDT3D_PATCH_VERSION})
1111
set(DYNAMICEDT3D_SOVERSION ${DYNAMICEDT3D_MAJOR_VERSION}.${DYNAMICEDT3D_MINOR_VERSION})
1212

Diff for: dynamicEDT3D/package.xml

+1-1
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.8.1</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>

Diff for: octomap/CHANGELOG.txt

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v1.8.1: 2017-01-13
2+
==================
3+
- Disambiguated isnan (C++11)
4+
- Fixed #123: Set root=NULL in clear()
5+
- Fixed #131: Portable binary read/write of Pointcloud and ScanGraph (uint32_t)
6+
17
v1.8.0: 2016-04-20
28
==================
39
- Fixed #98: The tree structure in memory is now maintained in OcTreeBaseImpl to

Diff for: octomap/CMakeLists.txt

+1-1
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 8)
9-
set(OCTOMAP_PATCH_VERSION 0)
9+
set(OCTOMAP_PATCH_VERSION 1)
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)

Diff for: octomap/package.xml

+1-1
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.8.1</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

Diff for: octovis/CMakeLists.txt

+1-1
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 8)
7-
set(OCTOVIS_PATCH_VERSION 0)
7+
set(OCTOVIS_PATCH_VERSION 1)
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:

Diff for: octovis/package.xml

+1-1
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.8.1</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)