commit 22b274d9411c9467935c3c4b875f876e5bfcd1e7
parent 9852338090eed767540c2bd343e195ada415ccf6
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 27 Aug 2021 09:24:26 +0200
Merge branch 'release_0.0.2' into develop
Diffstat:
8 files changed, 15 insertions(+), 11 deletions(-)
diff --git a/README.md b/README.md
@@ -19,8 +19,12 @@ edited, built, tested and installed as any CMake project. Refer to the [CMake
documentation](https://cmake.org/documentation) for further informations on
CMake.
-Release notes
--------------
+## Release notes
+
+### Version 0.0.2
+
+Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has become
+obsolete.
### Version 0.0.1
@@ -28,7 +32,7 @@ Fix MSVC build.
## License
-Copyright (C) 2020 [|Meso|Star>](https://www.meso-star.com)
+Copyright (C) 2020, 2021 [|Meso|Star>](https://www.meso-star.com)
(<contact@meso-star.com>). Star-ColorMap is free software released
under the GPL v3+ license: GNU GPL version 3 or later. You are welcome to
redistribute it under certain conditions; refer to the COPYING file for
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+# Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
#
# 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
@@ -37,7 +37,7 @@ include_directories(${RSys_INCLUDE_DIR})
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 0)
-set(VERSION_PATCH 1)
+set(VERSION_PATCH 2)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SCMAP_FILES_SRC scmap.c scmap_palettes.c)
diff --git a/src/scmap.c b/src/scmap.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
*
* 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/scmap.h b/src/scmap.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
*
* 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/scmap_palettes.c b/src/scmap_palettes.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
*
* 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_scmap.c b/src/test_scmap.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
*
* 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_scmap_fetch_color.c b/src/test_scmap_fetch_color.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
*
* 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_scmap_palettes.c b/src/test_scmap_palettes.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2020, 2021 |Meso|Star> (contact@meso-star.com)
*
* 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