From ff858747b7fd7f0ceb0e97bb291031062c27c55c Mon Sep 17 00:00:00 2001 From: angusj Date: Sun, 26 Nov 2023 13:13:42 +1000 Subject: [PATCH] Version 1.2.4 Changes since ver 1.2.3 include: 1. Important: Offsetting open path behaviour has changed. The delta now behaves as it did in Clipper1 (See Issue #707) 2. Important: Data structures of exported values in clipper.export.h have changed. 3. Minor bugfixes to PolyTree nesting (#679, #687) 4. Numerous minor bugfixes to polygon offsetting (#703, #715, #724) 5. Fixed an obscure bug in polygon clipping caused by horizontal spikes (#720) 6. Significantly improved documentation. --- CPP/CMakeLists.txt | 2 +- CPP/Clipper2Lib/include/clipper2/clipper.version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CPP/CMakeLists.txt b/CPP/CMakeLists.txt index 9c419799..817cf017 100644 --- a/CPP/CMakeLists.txt +++ b/CPP/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.15) -project(Clipper2 VERSION 1.2.3 LANGUAGES C CXX) +project(Clipper2 VERSION 1.2.4 LANGUAGES C CXX) set(CMAKE_POSITION_INDEPENDENT_CODE ON) if(NOT DEFINED CMAKE_CXX_STANDARD OR CMAKE_CXX_STANDARD LESS 17) diff --git a/CPP/Clipper2Lib/include/clipper2/clipper.version.h b/CPP/Clipper2Lib/include/clipper2/clipper.version.h index 638b222a..af39c3b5 100644 --- a/CPP/Clipper2Lib/include/clipper2/clipper.version.h +++ b/CPP/Clipper2Lib/include/clipper2/clipper.version.h @@ -1,6 +1,6 @@ #ifndef CLIPPER_VERSION_H #define CLIPPER_VERSION_H -constexpr auto CLIPPER2_VERSION = "1.2.3"; +constexpr auto CLIPPER2_VERSION = "1.2.4"; #endif // CLIPPER_VERSION_H