From 6d9963af156c553d76bb590476b667bfe3756a7a Mon Sep 17 00:00:00 2001 From: Nicolas Mellado Date: Fri, 29 Jul 2022 16:20:21 +0200 Subject: [PATCH 1/2] Update version number to 0.3 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e63273942..3c727783d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ endif() set(CMAKE_DISABLE_SOURCE_CHANGES ON) set(CMAKE_DISABLE_IN_SOURCE_BUILD ON) -project(Ponca LANGUAGES CXX VERSION 0.2) +project(Ponca LANGUAGES CXX VERSION 0.3) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) From b079bc42ce03958a962761ea45737b73b46897ff Mon Sep 17 00:00:00 2001 From: Nicolas Mellado Date: Fri, 29 Jul 2022 16:20:31 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a1e8d5dab..0f7f475c3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,17 +1,25 @@ Ponca changelog + -------------------------------------------------------------------------------- -Current head (v.0.2.1 RC) +v.0.3 - API - [spatialpartitioning] Remove duplicated code and clean API (#32,#51) - [spatialpartitioning] Fix a bug in range queries (#46) + - [spatialpartitioning] Add a counter of leaf in the KdTree (55#) + - [spatialpartitioning] Add editInput on Queries to allow query re-usability + between different request (57#) - [fitting] Add Line primitive and LeastSquaresLineFitting (#39) - [fitting] Rename several classes for better name consistency (#42) - [fitting] Add DryFit: a dummy fit object useful for debugging or monitoring (#52, #53) - [fitting] Improve convenience functions for basket: add compute(Range) and computeWithIds, which can be directly interfaced with kdtree queries (#53) - [fitting] Fix too sensitive AlgebraicSphere comparison (#53) + - [common] Add missing include directive in stack.h (#59) + +- Buildchain + - [cmake] Add option to hide IDE targets (#54) - Tests - [spatialpartitioning] Fix wrong test macro in kdtree tests (#46)