commit fa7690c5813ef2e98ef8d4cf2861daaa5c7e2f18
parent 4213d7c20246bf1538f5817e88ec9ad5336e279c
Author: vaplv <vaplv@free.fr>
Date: Thu, 7 Oct 2021 10:28:16 +0200
Merge branch 'release_0.1.3'
Diffstat:
7 files changed, 19 insertions(+), 15 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
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.1)
project(polygon C)
enable_testing()
@@ -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