commit 22a8bd61dc1db2e27b9372a274c40402e60db624
parent 1b7695ed04152e1775329cb8fb8b4fe4690a689b
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Mon, 14 Mar 2022 10:43:57 +0100
Merge branch 'release_0.4' into develop
Diffstat:
2 files changed, 13 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -9,12 +9,14 @@ new settings, enabling ultra-fast Monte-Carlo computations.
## How to build
-Stardis relies on the [CMake](http://www.cmake.org) and the
+Sgreen relies on the [CMake](http://www.cmake.org) and the
[RCMake](https://gitlab.com/vaplv/rcmake/) package to build.
It also depends on the
[RSys](https://gitlab.com/vaplv/rsys/) library as well as on the
[OpenMP](http://www.openmp.org) 2.0 specification to parallelize its
-computations.
+computations. Finally, sgreen depends on the header file in
+[Stardis-green-types](https://gitlab.com/meso-star/stardis.git) to define
+the format of its input files.
First ensure that CMake and a C compiler that implements the OpenMP 2.0
specification are installed on your system. Then install the RCMake package as
@@ -24,9 +26,16 @@ variable the install directories of its dependencies.
## Release notes
+## Version 0.4
+
+- Change input file format to cope with stardis changes.
+- Now depends on the stardis-green-types.h header file, that is installed
+ when building stardis and describes the types used to read and write Green
+ function binary files. Currently depends on version 4.
+
### Version 0.3
-Manage fileformat updates introduced by Stardis 0.7.
+- Change input file format to cope with stardis changes.
### Version 0.2.1
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -41,7 +41,7 @@ configure_file(${GREEN_SOURCE_DIR}/../doc/sgreen.1.txt.in
${CMAKE_CURRENT_BINARY_DIR}/doc/sgreen.1.txt @ONLY)
set(GREEN_VERSION_MAJOR 0)
-set(GREEN_VERSION_MINOR 3)
+set(GREEN_VERSION_MINOR 4)
set(GREEN_VERSION_PATCH 0)
set(GREEN_VERSION ${GREEN_VERSION_MAJOR}.${GREEN_VERSION_MINOR}.${GREEN_VERSION_PATCH})