polygon

Polygon triangulation
git clone git://git.meso-star.fr/polygon.git
Log | Files | Refs | README | LICENSE

commit 171046ba3ed050eaae32350525de2a80005ba6b1
parent 59a69e1e3ae3a47c108f7b2cc3275e8014d2d0a6
Author: vaplv <vaplv@free.fr>
Date:   Thu,  7 Oct 2021 10:29:15 +0200

Merge branch 'release_0.1.3' into develop

Diffstat:
MREADME.md | 18+++++++++++-------
Mcmake/CMakeLists.txt | 4++--
Msrc/polygon.c | 2+-
Msrc/polygon.h | 2+-
Msrc/test_polygon.c | 2+-
Msrc/test_polygon1.c | 2+-
Msrc/test_polygon_utils.h | 2+-
7 files changed, 18 insertions(+), 14 deletions(-)

diff --git a/README.md b/README.md @@ -17,15 +17,19 @@ can be edited, built, tested and installed as any CMake project. ## Release notes +### Version 0.1.3 + +Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has become +obsolete. + ### Version 0.1.2 -- Update the version of the RSys dependency to 0.6: replace the deprecated - `[N]CHECK` macros by the new macro `CHK`. +Update the version of the RSys dependency to 0.6: replace the deprecated +`[N]CHECK` macros by the new macro `CHK`. ## License -Polygon is Copyright (C) 2014-2017 Vincent Forest (vaplv@free.fr). It is a free -software released under the [OSI](https://opensource.org)-approved GPL v3+ -license. You are welcome to redistribute it under certain conditions; refer to -the COPYING file for details. - +Copyright (C) 2014-2017, 2021 Vincent Forest (vaplv@free.fr). Polygon is free +software released under GPL v3+ license: GNU GPL version 3 or later. You are +welcome to redistribute it under certain conditions; refer to the COPYING file +for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2014-2017 Vincent Forest (vaplv@free.fr) +# Copyright (C) 2014-2017, 2021 Vincent Forest (vaplv@free.fr) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -38,7 +38,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys) ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 1) -set(VERSION_PATCH 2) +set(VERSION_PATCH 3) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(POLYGON_FILES_SRC polygon.c) diff --git a/src/polygon.c b/src/polygon.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2014-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2014-2017, 2021 Vincent Forest (vaplv@free.fr) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/polygon.h b/src/polygon.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2014-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2014-2017, 2021 Vincent Forest (vaplv@free.fr) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_polygon.c b/src/test_polygon.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2014-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2014-2017, 2021 Vincent Forest (vaplv@free.fr) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_polygon1.c b/src/test_polygon1.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2014-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2014-2017, 2021 Vincent Forest (vaplv@free.fr) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/test_polygon_utils.h b/src/test_polygon_utils.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2014-2017 Vincent Forest (vaplv@free.fr) +/* Copyright (C) 2014-2017, 2021 Vincent Forest (vaplv@free.fr) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by