Skip to content

Commit 863e069

Browse files
committed
Version 1.10.0 release
1 parent e5227fd commit 863e069

File tree

7 files changed

+27
-9
lines changed

7 files changed

+27
-9
lines changed

dynamicEDT3D/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ include(GNUInstallDirs)
66

77
# version (e.g. for packaging)
88
set(DYNAMICEDT3D_MAJOR_VERSION 1)
9-
set(DYNAMICEDT3D_MINOR_VERSION 9)
10-
set(DYNAMICEDT3D_PATCH_VERSION 8)
9+
set(DYNAMICEDT3D_MINOR_VERSION 10)
10+
set(DYNAMICEDT3D_PATCH_VERSION 0)
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="3">
22
<name>dynamic_edt_3d</name>
3-
<version>1.9.8</version>
3+
<version>1.10.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: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
v1.10.0: 2024-03-19
2+
===================
3+
- CMake: Fix duplicate uninstall target (#406)
4+
- Fix errors with recent compilers and C++17/20 standard (#394)
5+
- Fix ScanGraph.h c++20 compilation error (#398)
6+
- Add smaller than operator for vectors (#330)
7+
- Add vcpkg installation instructions to Readme (#382)
8+
- Fix test dependencies in CMakeLists (#374)
9+
- replace deprecated std::iterator by defining required types (#373)
10+
- octovis: fix issue with saving not showing any dialog (#414)
11+
- octovis: Fix deprecated QString and glext redefinition warning (#375)
12+
- octovis: Declare missing dependency on opengl (#408)
13+
- ROS: Updates to compile cleanly on ROS 2 Rolling on Ubuntu 24.04 (#415)
14+
- ROS: Remove ccache for ROS-Industrial CI yml (#413)
15+
- ROS: Remove EOL ROS distros from CI actions
16+
17+
18+
119
v1.9.8: 2022-05-12
220
==================
321
- Also set lowercase octomap_* variables in CMake config (#369)

octomap/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ include(GNUInstallDirs)
66

77
# version (e.g. for packaging)
88
set(OCTOMAP_MAJOR_VERSION 1)
9-
set(OCTOMAP_MINOR_VERSION 9)
10-
set(OCTOMAP_PATCH_VERSION 8)
9+
set(OCTOMAP_MINOR_VERSION 10)
10+
set(OCTOMAP_PATCH_VERSION 0)
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="3">
22
<name>octomap</name>
3-
<version>1.9.8</version>
3+
<version>1.10.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
@@ -6,8 +6,8 @@ include(GNUInstallDirs)
66

77
# # version (e.g. for packaging)
88
set(OCTOVIS_MAJOR_VERSION 1)
9-
set(OCTOVIS_MINOR_VERSION 9)
10-
set(OCTOVIS_PATCH_VERSION 8)
9+
set(OCTOVIS_MINOR_VERSION 10)
10+
set(OCTOVIS_PATCH_VERSION 0)
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<package format="3">
22
<name>octovis</name>
3-
<version>1.9.8</version>
3+
<version>1.10.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)