Skip to content

Commit 419c26c

Browse files
committed
Fix missing version in header, and make new release
1 parent fb2a9d7 commit 419c26c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# nanoflann 1.5.4: Released Jan 10, 2024
2+
- Fix outdated NANOFLANN_VERSION macro in header file
3+
- Fix poll-allocator alignment problems
4+
- Add NANOFLANN_USE_SYSTEM_GTEST option
5+
- Look for Threads dependency in CMake config script
6+
7+
18
# nanoflann 1.5.3: Released Dec 7, 2023
29
* **Other changes**:
310
- Save one redundant call to `computeMinMax()` in `middleSplit_` ([PR#220](https://github.com/jlblancoc/nanoflann/pull/220) by [qq422216549](https://github.com/qq422216549)).

include/nanoflann.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
#include <vector>
6262

6363
/** Library version: 0xMmP (M=Major,m=minor,P=patch) */
64-
#define NANOFLANN_VERSION 0x151
64+
#define NANOFLANN_VERSION 0x154
6565

6666
// Avoid conflicting declaration of min/max macros in Windows headers
6767
#if !defined(NOMINMAX) && \

0 commit comments

Comments
 (0)