commit 4a522ac3e4a2ac5ab339b9c9ede62c44d1ca97c8
parent f5157e0442cfe35ddaa99fd59a15659f52719567
Author: vaplv <vaplv@free.fr>
Date: Fri, 27 Aug 2021 12:47:55 +0200
Merge branch 'release_2.0.1' into develop
Diffstat:
10 files changed, 17 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
@@ -28,6 +28,11 @@ can be edited, built, tested and installed as any CMake project.
## Release notes
+### Version 2.0.1
+
+Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has become
+obsolete.
+
### Version 2.0
Full review and refactoring of the code.
@@ -45,7 +50,7 @@ Full review and refactoring of the code.
name that is internally used by the logger to print messages regarding the
stream.
- Rename the `get` functions.
-- Rely on RSys to parse the input files and to perform text conversions.
+- Rely on RSys to parse the input files and to perform text conversions.
- Add support of the `map_bump` keyword as an alias of the `bump` keyword in
the mtl fileformat.
@@ -62,7 +67,7 @@ Full review and refactoring of the code.
## License
-Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr). AW is free
+Copyright (C) 2014-2017, 2020, 2021 Vincent Forest (vaplv@free.fr). AW 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, 2020 Vincent Forest (vaplv@free.fr)
+# Copyright (C) 2014-2017, 2020, 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 2)
set(VERSION_MINOR 0)
-set(VERSION_PATCH 0)
+set(VERSION_PATCH 1)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(AW_FILES_SRC aw_c.h aw.c aw_obj.c aw_mtl.c)
diff --git a/src/aw.c b/src/aw.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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/aw.h b/src/aw.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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/aw_c.h b/src/aw_c.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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/aw_mtl.c b/src/aw_mtl.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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/aw_obj.c b/src/aw_obj.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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_aw.c b/src/test_aw.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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_aw_mtl.c b/src/test_aw_mtl.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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_aw_obj.c b/src/test_aw_obj.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017, 2020 Vincent Forest (vaplv@free.fr)
+/* Copyright (C) 2014-2017, 2020, 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