Skip to content

Commit a4ecae2

Browse files
committed
Version 1.7.1 release
1 parent 14ea417 commit a4ecae2

File tree

7 files changed

+26
-10
lines changed

7 files changed

+26
-10
lines changed

dynamicEDT3D/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(DYNAMICEDT3D_MAJOR_VERSION 1)
88
set(DYNAMICEDT3D_MINOR_VERSION 7)
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

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.7.0</version>
3+
<version>1.7.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>

octomap/CHANGELOG.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
v1.7.1: 2016-01-31
2+
==================
3+
- Fixed #82: Enable uninstall target for complete project
4+
- Fixed #47: Exported CMake library paths for Windows no longer
5+
have the Release/Debug prefix and correctly contain the .lib file
6+
- Fixed #51: IO factory class registry with MSVC. Calling a dummy
7+
function from an OcTree class c'tor enables reading general .ot files
8+
when compiling with MSVC
9+
- Fixed #100: Explicit casts to avoid warnings with MSVC
10+
111
v1.7.0: 2015-11-27
212
==================
313
- BBX iterators fixed for empty trees (thx to F. Boniardi)
@@ -8,6 +18,12 @@ v1.7.0: 2015-11-27
818
A. Ecins)
919
- Fixed hashing overflow with clang (thx to L. Riano)
1020

21+
22+
v1.6.9: 2016-01-13
23+
==================
24+
- Maintenance release for ROS:
25+
Added function to determine state of change detection
26+
1127
v1.6.7: 2014-08-31
1228
==================
1329
- FSF address in octovis license header for OctoMap package in Fedora

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 7)
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)

octomap/package.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<package>
22
<name>octomap</name>
3-
<version>1.7.0</version>
3+
<version>1.7.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

77
<author email="[email protected]">Kai M. Wurm</author>
8-
<author email="[email protected]">Armin Hornung</author>
9-
<maintainer email="[email protected]">Armin Hornung</maintainer>
8+
<author email="[email protected]">Armin Hornung</author>
9+
<maintainer email="[email protected]">Armin Hornung</maintainer>
1010
<license>BSD</license>
1111

1212
<url type="website">http://octomap.github.io</url>

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 7)
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:

octovis/package.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<package>
22
<name>octovis</name>
3-
<version>1.7.0</version>
3+
<version>1.7.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

77
<author email="[email protected]">Kai M. Wurm</author>
8-
<author email="[email protected]">Armin Hornung</author>
9-
<maintainer email="[email protected]">Armin Hornung</maintainer>
8+
<author email="[email protected]">Armin Hornung</author>
9+
<maintainer email="[email protected]">Armin Hornung</maintainer>
1010
<license>GPLv2</license>
1111

1212
<url type="website">http://octomap.github.io</url>

0 commit comments

Comments
 (0)