star-cmap

Mapping values onto color ramps
git clone git://git.meso-star.fr/star-cmap.git
Log | Files | Refs | README | LICENSE

commit 0201a789c24696cc9eab72aa984095d4b0d1f7cb
parent c4c18ca8b3b33c9ccd6c1f13d35ca03eb1ed4663
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Fri, 27 Aug 2021 09:23:16 +0200

Merge branch 'release_0.0.2'

Diffstat:
MREADME.md | 10+++++++---
Mcmake/CMakeLists.txt | 6+++---
Msrc/scmap.c | 2+-
Msrc/scmap.h | 2+-
Msrc/scmap_palettes.c | 2+-
Msrc/test_scmap.c | 2+-
Msrc/test_scmap_fetch_color.c | 2+-
Msrc/test_scmap_palettes.c | 2+-
8 files changed, 16 insertions(+), 12 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 @@ -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(scmap C) enable_testing() @@ -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