commit a5f9211726fe4378464d84b9c53b9a804ed15f1d
parent 1b96de6cc62acbd0fdd845c74f1e3a8c7f6b0c01
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 13 Feb 2018 11:18:29 +0100
Merge branch 'release_0.0' into develop
Diffstat:
2 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -8,7 +8,8 @@ thermal problems.
Stardis 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/) and
+[RSys](https://gitlab.com/vaplv/rsys/),
+[Star-2D](https://gitlab.com/meso-star/star-2d/),
[Star-3D](https://gitlab.com/meso-star/star-3d/) and
[Star-SP](https://gitlab.com/meso-star/star-sp/) libraries as well as on the
[OpenMP](http://www.openmp.org) 1.2 specification to parallelize its
@@ -20,6 +21,17 @@ well as all the aforementioned prerequisites. Finally generate the project from
the `cmake/CMakeLists.txt` file by appending to the `CMAKE_PREFIX_PATH`
variable the install directories of its dependencies.
+## Release notes
+
+### Version 0.0
+
+First version and implementation of the Stardis solver API.
+
+- Support fluid/solid and solid/solid interfaces.
+- Only conduction is currently fully supported: convection and radiative
+ temperature are not computed yet. Fluid media can be added to the system but
+ currently, Stardis assumes that their temperature are known.
+
## License
Stardis is Copyright (C) |Meso|Star> 2016-2018 (<contact@meso-star.com>). It is
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -39,7 +39,7 @@ rcmake_append_runtime_dirs(_runtime_dirs RSys Star3D StarSP)
################################################################################
# Configure and define targets
################################################################################
-set(VERSION_MAJOR 1)
+set(VERSION_MAJOR 0)
set(VERSION_MINOR 0)
set(VERSION_PATCH 0)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})