commit 4842402a00275b188eb1de6c8b1b2a2d188aa2e4 parent f7f3546c05e45c9fe2103eb54d707fccbd48f688 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Mon, 27 Feb 2023 15:17:49 +0100 Merge branch 'release_0.9.1' into develop Diffstat:
| M | README.md | | | 12 | ++++++++++++ |
| M | cmake/CMakeLists.txt | | | 2 | +- |
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -97,6 +97,18 @@ informations on CMake. ## Release notes +### Version 0.9.1 + +- Fix invalid read/write memory access when ray tracing the ground in + `htrdr-atmopshere`. +- Fix compilation warning detected by GCC 12. +- Fix `htrdr-planeto` man page (-S option): the unit of the + radius and the distance from the source is not the meter but the kilometer. +- Fix `htrdr` man page: replaced long options with short options. +- Reference and install the rnrl fileformat man page. +- Proofreading the README and man pages: correcting typos, spelling and + formatting errors and turns of phrase + ### Version 0.9 #### Adds radiative transfer simulation in 3D planetary atmospheres 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 0) +set(VERSION_PATCH 1) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) option(HTRDR_BUILD_ATMOSPHERE "Build the htrdr-atmosphere program" ON)