Skip to content

Commit b2ea4e9

Browse files
authored
Merge pull request #11654 from KratosMultiphysics/Release-9.4.1
Release 9.4.1
2 parents e525fdf + 4672904 commit b2ea4e9

File tree

12 files changed

+12
-16
lines changed

12 files changed

+12
-16
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ endif(POLICY CMP0057)
2727

2828
# Set here the version number **** only update upon tagging a release!
2929
set (KratosMultiphysics_MAJOR_VERSION 9)
30-
set (KratosMultiphysics_MINOR_VERSION 3)
30+
set (KratosMultiphysics_MINOR_VERSION 4)
3131
set (KratosMultiphysics_PATCH_VERSION 1)
3232

3333
# If KRATOS_SOURCE_DIR is not defined use the CMAKE_SOURCE_DIR

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ The result should be:
518518
' / __| _` | __| _ \ __|
519519
. \ | ( | | ( |\__ \
520520
_|\_\_| \__,_|\__|\___/ ____/
521-
Multi-Physics 9.2."0"-4afb88094a-Release-ARM64
521+
Multi-Physics 9.X.Y-4afb88094a-Release-ARM64
522522
Compiled for GNU/Linux and Python3.8 with GCC-8.5
523523
Compiled with threading and MPI support.
524524
Maximum number of threads: 1.

applications/DamApplication/DamApplication.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"author": "Kratos Team",
88
"author_email": "[email protected]",
99
"description": "KRATOS Multiphysics (\"Kratos\") is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.",
10-
"readme": "scripts/wheels/README.md"
10+
"readme": "applications/DamApplication/README.md"
1111
}

kratos/tests/test_utilities/test_laplacian_element.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace Kratos::Testing
3131
* @details It is designed to create a simple LHS and RHS in order to test strategies, processes. etc.... This way the common interface of the elements/conditions can be used to minimize the difference between the actual implementation and the test
3232
* @author Vicente Mataix Ferrandiz
3333
*/
34-
class TestLaplacianElement
34+
class KRATOS_API(KRATOS_CORE) TestLaplacianElement
3535
: public Element
3636
{
3737
public:

scripts/wheels/build_release_linux.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$RELEASE_BRANCH="Release-9.3.1"
1+
$RELEASE_BRANCH="Release-9.4.1"
22

33
$HOST_SWAP="C:/data_swap_host"
44
$GUEST_SWAP="/data_swap_guest"

scripts/wheels/build_release_windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$RELEASE_BRANCH="Release-9.3.1"
1+
$RELEASE_BRANCH="Release-9.4.1"
22

33
$HOST_SWAP="C:/data_swap_host"
44
$GUEST_SWAP="C:/data_swap_guest"

scripts/wheels/linux/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
PYTHONS=("cp38" "cp39" "cp310" "cp311")
3-
export KRATOS_VERSION="9.3.1"
3+
export KRATOS_VERSION="9.4.1"
44

55
BASE_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
66
export KRATOS_ROOT="/workspace/kratos/Kratos"

scripts/wheels/linux/build_mpi.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/bin/bash
22
PYTHONS=("cp38" "cp39" "cp310" "cp311")
3-
# PYTHONS=("cp38")
4-
export KRATOS_VERSION="9.3.1"
3+
export KRATOS_VERSION="9.4.1"
54

65
BASE_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
76
export KRATOS_ROOT="/workspace/kratos/Kratos"

scripts/wheels/linux/configure.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ add_app ${KRATOS_APP_DIR}/CompressiblePotentialFlowApplication;
5050
# add_app ${KRATOS_APP_DIR}/HDF5Application;
5151
add_app ${KRATOS_APP_DIR}/IgaApplication;
5252
add_app ${KRATOS_APP_DIR}/ChimeraApplication;
53-
add_app ${KRATOS_APP_DIR}/MultilevelMonteCarloApplication;
5453
add_app ${KRATOS_APP_DIR}/StatisticsApplication;
5554
add_app ${KRATOS_APP_DIR}/RomApplication;
5655
add_app ${KRATOS_APP_DIR}/ShallowWaterApplication;
@@ -74,6 +73,6 @@ cmake -H"${KRATOS_SOURCE}" -B"${KRATOS_BUILD}/${KRATOS_BUILD_TYPE}" \
7473
-DBLAS_LIBRARIES="/usr/lib64/libblas.so.3" \
7574
-DINCLUDE_MMG=ON \
7675
-DMMG_ROOT="/workspace/external_libraries/mmg/mmg_5_5_1" \
77-
-DKRATOS_BUILD_TESTING=OFF \
76+
-DKRATOS_BUILD_TESTING=ON \
7877
-DINSTALL_RUNKRATOS=OFF \
7978
-DKRATOS_GENERATE_PYTHON_STUBS=ON \

scripts/wheels/linux/configure_mpi.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ add_app ${KRATOS_APP_DIR}/CompressiblePotentialFlowApplication;
5151
# add_app ${KRATOS_APP_DIR}/HDF5Application;
5252
add_app ${KRATOS_APP_DIR}/IgaApplication;
5353
add_app ${KRATOS_APP_DIR}/ChimeraApplication;
54-
add_app ${KRATOS_APP_DIR}/MultilevelMonteCarloApplication;
5554
add_app ${KRATOS_APP_DIR}/StatisticsApplication;
5655
add_app ${KRATOS_APP_DIR}/RomApplication;
5756
add_app ${KRATOS_APP_DIR}/ShallowWaterApplication;
@@ -75,6 +74,6 @@ cmake -H"${KRATOS_SOURCE}" -B"${KRATOS_BUILD}/${KRATOS_BUILD_TYPE}" \
7574
-DBOOST_ROOT="/workspace/boost/boost_1_71_0" \
7675
-DINCLUDE_MMG=ON \
7776
-DMMG_ROOT="/workspace/external_libraries/mmg/mmg_5_5_1" \
78-
-DKRATOS_BUILD_TESTING=OFF \
77+
-DKRATOS_BUILD_TESTING=ON \
7978
-DINSTALL_RUNKRATOS=OFF \
8079
-DKRATOS_GENERATE_PYTHON_STUBS=ON \

0 commit comments

Comments
 (0)