commit 528f9f0edee8eba6eaed62066fa201e3863d8468 parent b67ef2d09fd24c50451537e4fddd8f46a8e8bd92 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Fri, 5 May 2023 13:25:16 +0200 Merge branch 'release_0.9.2' into develop Diffstat:
| M | README.md | | | 11 | +++++++++++ |
| M | cmake/CMakeLists.txt | | | 2 | +- |
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -97,6 +97,17 @@ informations on CMake. ## Release notes +### Version 0.9.2 + +- Update the `rnatm` library to version 0.0.1. This versions fixes several + bugs when different atmospheric components do not have the same volumetric + meshes. +- Display an error message when parsing unknown arguments to the + `htrdr-planeto` command. +- Fix `htrdr-planeto` man page: there was an error in the `csplit` command + provided as an example to extract octrees from the output of `htrdr-planeto` + when the -d option is used. + ### Version 0.9.1 - Fix invalid read/write memory access when ray tracing the ground in diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -30,7 +30,7 @@ set(HTRDR_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}) set(VERSION_MAJOR 0) set(VERSION_MINOR 9) -set(VERSION_PATCH 1) +set(VERSION_PATCH 2) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) option(HTRDR_BUILD_ATMOSPHERE "Build the htrdr-atmosphere program" ON)