commit 00c7cadece23a06f59f3aa356b70c1275a080559
parent 76fdcad6dea3a8c1aa0045c8b61d46189f1f28f1
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 19 Oct 2021 16:38:19 +0200
Merge branch 'release_0.7.1'
Diffstat:
4 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -33,6 +33,10 @@ variable the install directories of its dependencies.
## Release notes
+### Version 0.7.1
+
+Fix debug build.
+
### Version 0.7
- Remove the boundary condition `T_BOUNDARY_FOR_FLUID`: it was exactly the same
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -56,7 +56,7 @@ configure_file(${SDIS_SOURCE_DIR}/../doc/stardis.1.txt.in
set(SDIS_VERSION_MAJOR 0)
set(SDIS_VERSION_MINOR 7)
-set(SDIS_VERSION_PATCH 0)
+set(SDIS_VERSION_PATCH 1)
set(SDIS_VERSION ${SDIS_VERSION_MAJOR}.${SDIS_VERSION_MINOR}.${SDIS_VERSION_PATCH})
configure_file(${SDIS_SOURCE_DIR}/stardis-default.h.in
diff --git a/src/stardis-app.h b/src/stardis-app.h
@@ -275,7 +275,7 @@ str_print_t_boundary
const struct t_boundary* b)
{
res_T res = RES_OK;
- ASSERT(str && b && DESC_IS_T(type));
+ ASSERT(str && b);
STR_APPEND_PRINTF(str, "T boundary for solid '%s': T=%g ",
ARG2( str_cget(&b->name), b->imposed_temperature ) );
diff --git a/src/stardis-parsing.c b/src/stardis-parsing.c
@@ -1152,8 +1152,7 @@ description_set_name
const char* keywords[] = {
"AUTO", "BACK", "BOTH", "FLUID", "FRONT", "F_BOUNDARY_FOR_SOLID",
"H_BOUNDARY_FOR_FLUID", "H_BOUNDARY_FOR_SOLID", "SCALE", "SOLID",
- "SOLID_FLUID_CONNECTION", "T_BOUNDARY_FOR_FLUID", "T_BOUNDARY_FOR_SOLID",
- "UNKNOWN" };
+ "SOLID_FLUID_CONNECTION", "T_BOUNDARY_FOR_SOLID", "UNKNOWN" };
int i;
ASSERT(name && tk);