htrdr

Solving radiative transfer in heterogeneous media
git clone git://git.meso-star.fr/htrdr.git
Log | Files | Refs | README | LICENSE

commit b36a5301833d1e51f77f954c6e2459180bc9dd36
parent c2404fd863ee8c46031874cab00b74a51a531b26
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon,  4 Feb 2019 09:28:21 +0100

Merge branch 'release_0.0.3' into develop

Diffstat:
MREADME.md | 9+++++++++
Mcmake/CMakeLists.txt | 4++--
2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -58,6 +58,15 @@ resulting project can be edited, built, tested and installed as any CMake project. Refer to the [CMake](https://cmake.org/documentation) for further informations on CMake. +## Release notes + +### Version 0.0.3 + +- Fix compilation on systems with a GNU C Library whose version is less than + 2.19. +- Fix a possible invalid memory access to cloud data leading to segmentation + faults. + ## License Copyright (C) 2018-2019 Centre National de la Recherche diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -25,7 +25,7 @@ option(NO_TEST "Do not build the tests" OFF) ################################################################################ find_package(RCMake 0.3 REQUIRED) find_package(RSys 0.7 REQUIRED) -find_package(Star3D 0.5 REQUIRED) +find_package(Star3D 0.6 REQUIRED) find_package(Star3DAW 0.3.1 REQUIRED) find_package(StarSF 0.6 REQUIRED) find_package(StarSP 0.8 REQUIRED) @@ -60,7 +60,7 @@ include_directories( ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 0) -set(VERSION_PATCH 2) +set(VERSION_PATCH 3) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(HTRDR_ARGS_DEFAULT_CAMERA_POS "0,0,0")