commit a19b7723ac366fa0a1a5084e6493dce6420aa063
parent bbec97c367a8ffb4e3c6ced66e6042ecaf381c04
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 27 Aug 2021 12:06:41 +0200
Merge branch 'release_0.11.1'
Diffstat:
3 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
@@ -34,6 +34,11 @@ variable to the directory that contains the `boost` include directory.
## Release notes
+### Version 0.11.1
+
+Sets the CMake minimum version to 3.1 in the Random123Config.cmake file: since
+CMake 3.20, version 2 has become obsolete.
+
### Version 0.11
- Add the `ssp_ran_spherical_zone_uniform` distribution that uniformly samples
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -75,7 +75,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys ${Boost_LIBRARY_DIRS})
################################################################################
set(VERSION_MAJOR 0)
set(VERSION_MINOR 11)
-set(VERSION_PATCH 0)
+set(VERSION_PATCH 1)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
set(SSP_FILES_SRC
diff --git a/cmake/Random123Config.cmake b/cmake/Random123Config.cmake
@@ -1,4 +1,4 @@
-# Copyright (C) |Meso|Star> 2015 (contact@meso-star.com)
+# Copyright (C) 2015-2021 |Meso|Star> (contact@meso-star.com)
#
# This software is a computer program whose purpose is to generate files
# used to build the Star-3D library.
@@ -29,7 +29,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.6)
+cmake_minimum_required(VERSION 3.1)
# Try to find the Random123 devel. Once done this will define:
# - Random123_FOUND: system has Random123