commit c3c8e998217c9657886888c3b9e17995c0925f9d
parent bbd3f13e07a28593599bf9dfab0bd45a884d6547
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 4 Oct 2021 15:55:06 +0200
Merge branch 'release_0.3.4'
Diffstat:
6 files changed, 18 insertions(+), 13 deletions(-)
diff --git a/README.md b/README.md
@@ -15,10 +15,15 @@ can be edited, built, tested and installed as any CMake project.
## Release notes
+### Version 0.3.4
+
+- Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has
+ become obsolete.
+
### Version 0.3.3
-- Fix star-stl lack of reentrancy. When used from a code using strtok,
- star-stl was corrupting the strtok context.
+- Fix star-stl lack of reentrancy. When used from a code using strtok, star-stl
+ was corrupting the strtok context.
### Version 0.3.2
@@ -27,8 +32,8 @@ can be edited, built, tested and installed as any CMake project.
## License
-Star-STL is Copyright (C) |Meso|Star> 2015-2016 (<contact@meso-star.com>). It
-is a free software released under the [OSI](http://opensource.org)-approved
-CeCILL license. You are welcome to redistribute it under certain conditions;
-refer to the COPYING files for details.
+Copyright (C) 2015, 2016, 2019, 2021 |Méso|Star> (<contact@meso-star.com>).
+Star-STL is free software released under the CeCILLv2.1 license. You are
+welcome to redistribute it under certain conditions; refer to the COPYING files
+for details.
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright (C) |Meso|Star> 2015-2016 (contact@meso-star.com)
+# Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com)
#
# This software is governed by the CeCILL license under French law and
# abiding by the rules of distribution of free software. You can use,
@@ -26,7 +26,7 @@
# The fact that you are presently reading this means that you have had
# knowledge of the CeCILL license and that you accept its terms.
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.1)
project(star-stl C)
enable_testing()
@@ -66,7 +66,7 @@ endif()
set(VERSION_MAJOR 0)
set(VERSION_MINOR 3)
-set(VERSION_PATCH 3)
+set(VERSION_PATCH 4)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set_target_properties(sstl PROPERTIES
DEFINE_SYMBOL SSTL_SHARED_BUILD
diff --git a/src/sstl.c b/src/sstl.c
@@ -1,4 +1,4 @@
-/* Copyright (C) |Meso|Star> 2015-2016 (contact@meso-star.com)
+/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com)
*
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use,
diff --git a/src/sstl.h b/src/sstl.h
@@ -1,4 +1,4 @@
-/* Copyright (C) |Meso|Star> 2015-2016 (contact@meso-star.com)
+/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com)
*
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use,
diff --git a/src/test_sstl.c b/src/test_sstl.c
@@ -1,4 +1,4 @@
-/* Copyright (C) |Meso|Star> 2015-2016 (contact@meso-star.com)
+/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com)
*
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use,
diff --git a/src/test_sstl_load.c b/src/test_sstl_load.c
@@ -1,4 +1,4 @@
-/* Copyright (C) |Meso|Star> 2015-2016 (contact@meso-star.com)
+/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com)
*
* This software is governed by the CeCILL license under French law and
* abiding by the rules of distribution of free software. You can use,