commit 06b4589db11ad5639cbd895c036da6fc1fdea244 parent 8459217b76604c106980dfaf90bd3e0e312875d5 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Fri, 15 Jun 2018 15:44:35 +0200 Merge branch 'release_0.8.1' into develop Diffstat:
| M | README.md | | | 7 | +++++++ |
| M | cmake/CMakeLists.txt | | | 2 | +- |
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -60,6 +60,13 @@ informations on CMake. ## Release notes +### Version 0.8.1 + +- Fix the VTK of the receiver map: the receiver map was written as `double` + while the type notified in the VTK file was `float`. This might produce + errors on loading of the resulting VTK file. The VTK data type is now set to + `double` to make it consistent with the type of the written values. + ### Version 0.8 Add the support of per-triangle absorbed flux density. The `per_primitive` diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -97,7 +97,7 @@ configure_file(${SOLSTICE_SOURCE_DIR}/../doc/solstice.1.txt.in set(VERSION_MAJOR 0) set(VERSION_MINOR 8) -set(VERSION_PATCH 0) +set(VERSION_PATCH 1) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) configure_file(${SOLSTICE_SOURCE_DIR}/solstice_version.h.in