Skip to content

Commit ff85874

Browse files
committed
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.
1 parent 88d0bc7 commit ff85874

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CPP/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15)
2-
project(Clipper2 VERSION 1.2.3 LANGUAGES C CXX)
2+
project(Clipper2 VERSION 1.2.4 LANGUAGES C CXX)
33

44
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
55
if(NOT DEFINED CMAKE_CXX_STANDARD OR CMAKE_CXX_STANDARD LESS 17)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef CLIPPER_VERSION_H
22
#define CLIPPER_VERSION_H
33

4-
constexpr auto CLIPPER2_VERSION = "1.2.3";
4+
constexpr auto CLIPPER2_VERSION = "1.2.4";
55

66
#endif // CLIPPER_VERSION_H

0 commit comments

Comments
 (0)