Skip to content

Commit

Permalink
Bump libpointmatcher version to 1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
boxanm committed Dec 17, 2024
1 parent 85fe9c1 commit ed13e2c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package libpointmatcher
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Unreleased
1.4.4 (2024-12-16)
------------------
**New features:**
* Added Angle Limit Datapointsfilter, which filters points if they lie inside or outside of a given spherical wedge
Expand Down
2 changes: 1 addition & 1 deletion build_system/.env.build_matrix.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ NBS_EXECUTE_BUILD_MATRIX_OVER_COMPOSE_FILE=docker-compose.dependencies.yaml
# Libpointmatcher version
#
# 'latest' is the most recent push to the current libpointmatcher checkout branch
NBS_MATRIX_REPOSITORY_VERSIONS=( '1.4.3' 'latest' )
NBS_MATRIX_REPOSITORY_VERSIONS=( '1.4.4' 'latest' )

#
# Libpointmatcher dependencies CMAKE_BUILD_TYPE
Expand Down
2 changes: 1 addition & 1 deletion build_system/.env.build_matrix.libpointmatcher.release
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ NBS_EXECUTE_BUILD_MATRIX_OVER_COMPOSE_FILE=docker-compose.libpointmatcher.yaml
# Libpointmatcher version
#
# 'latest' is the most recent push to the current libpointmatcher checkout branch
NBS_MATRIX_REPOSITORY_VERSIONS=( '1.4.3' 'latest' )
NBS_MATRIX_REPOSITORY_VERSIONS=( '1.4.4' 'latest' )

#
# Libpointmatcher CMAKE_BUILD_TYPE
Expand Down
2 changes: 1 addition & 1 deletion doc/LinkingProjects.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ In this following example, we build a very simple CMake project containing one e
cmake_minimum_required (VERSION 3.10.12)
project (myProject)
find_package(libpointmatcher 1.4.3 REQUIRED)
find_package(libpointmatcher 1.4.4 REQUIRED)
include_directories("${libpointmatcher_INCLUDE_DIRS}")
message(STATUS "Using libpointmatcher version ${libpointmatcher_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>libpointmatcher</name>
<version>1.4.3</version>
<version>1.4.4</version>
<description>
libpointmatcher is a modular ICP library, useful for robotics and computer vision.
</description>
Expand Down
4 changes: 2 additions & 2 deletions pointmatcher/PointMatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


//! version of the Pointmatcher library as string
#define POINTMATCHER_VERSION "1.4.3"
#define POINTMATCHER_VERSION "1.4.4"
//! version of the Pointmatcher library as an int
#define POINTMATCHER_VERSION_INT 10403
#define POINTMATCHER_VERSION_INT 10404

//! Functions and classes that are not dependant on scalar type are defined in this namespace
namespace PointMatcherSupport
Expand Down

0 comments on commit ed13e2c

Please sign in to comment.