commit 265b9b5878398a11cb8be16e4e5155684515badc
parent 57956af525d0926a00581f1d9498ca5111990f0b
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 15 Jun 2021 17:16:48 +0200
Merge branch 'release_0.7' into develop
Diffstat:
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -15,7 +15,10 @@ The library uses [CMake](http://www.cmake.org) and the
[RCMake](https://gitlab.com/vaplv/rcmake/#tab-readme) package to build. It also
depends on the
[Star-SP](https://gitlab.com/meso-star/star-sp/#tab-readme) and the
-[RSys](https://gitlab.com/vaplv/rsys/#tab-readme) libraries.
+[RSys](https://gitlab.com/vaplv/rsys/#tab-readme) libraries. The
+[RSIMD](https://gitlab.com/vaplv/rsimd) library is an optional dependency that,
+if it is installed, is used to speed up the setup of the built-in RDG-FA phase
+function.
First ensure that CMake is installed on your system. Then install the RCMake
package as well as all the aforementioned prerequisites. Finally generate the
@@ -24,6 +27,11 @@ project from the `cmake/CMakeLists.txt` file by appending to the
## Release notes
+### Version 0.7
+
+- Add a built-in phase function using the
+ [RDG-FA](https://doi.org/10.1016/j.jqsrt.2013.08.022) model.
+
### Version 0.6
- Add the phase function API allowing the user to define, sample and evaluate a
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -80,7 +80,7 @@ endif()
# Define targets
################################################################################
set(VERSION_MAJOR 0)
-set(VERSION_MINOR 6)
+set(VERSION_MINOR 7)
set(VERSION_PATCH 0)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})