commit 24cb43801ecd7a875f0164435157ab9e29bf2b28
parent 93668ff4dc34e44f1a1ebf444b7b5890269293b4
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Thu, 7 Oct 2021 10:54:50 +0200
Merge branch 'release_0.4.1'
Diffstat:
5 files changed, 17 insertions(+), 12 deletions(-)
diff --git a/README.md b/README.md
@@ -24,15 +24,20 @@ as any CMake project.
## Release notes
+### Version 0.4.1
+
+Sets the CMake minimum version to 3.1: since CMake 3.20, version 2.8 has become
+obsolete.
+
### Version 0.4
-- Bump the version of the AW dependency to 2.0:.uUdate the code to handle the
- API breaks introduce by this update.
+Bump the version of the AW dependency to 2.0: update the code to handle the API
+breaks introduce by this update.
## License
-Copyright (C) 2015, 2016, 2020 |Meso|Star> (<contact@meso-star.com>). Star-3DAW
-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.
+Copyright (C) 2015, 2016, 2020, 2021 |Meso|Star> (<contact@meso-star.com>).
+Star-3DAW 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) 2015, 2016, 2020 |Meso|Star> (contact@meso-star.com)
+# Copyright (C) 2015, 2016, 2020, 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-3daw C)
enable_testing()
@@ -57,7 +57,7 @@ include(rcmake_runtime)
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 4)
-set(VERSION_PATCH 0)
+set(VERSION_PATCH 1)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(S3DAW_FILES_SRC s3daw.c)
diff --git a/src/s3daw.c b/src/s3daw.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015, 2016, 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2015, 2016, 2020, 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/s3daw.h b/src/s3daw.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015, 2016, 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2015, 2016, 2020, 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_s3daw.c b/src/test_s3daw.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2015, 2016, 2020 |Meso|Star> (contact@meso-star.com)
+/* Copyright (C) 2015, 2016, 2020, 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,