Skip to content

Commit e1b96a7

Browse files
version tag 10.3.0
1 parent 9ff3f41 commit e1b96a7

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/tester.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install bins
3434
run: |
35-
pip install --upgrade --force-reinstall --no-cache-dir KratosMultiphysics-all==10.2.1
35+
pip install --upgrade --force-reinstall --no-cache-dir KratosMultiphysics-all==10.3.0
3636
3737
# Copy problemtype to gid and copy exec
3838
- name: Move kratos where it should be

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ If you need the developer version, you are on the right place.
2525
* 4.1- To execute Kratos using the standard pip packages:
2626
* Python version recommended: 3.8, 3.9, 3.10, 3.11, 3.12
2727
* Open a terminal and run
28-
- Linux: `python3 -m pip install --upgrade --force-reinstall --no-cache-dir KratosMultiphysics-all==10.2.3`
29-
- Windows: `python -m pip install --upgrade --force-reinstall --no-cache-dir KratosMultiphysics-all==10.2.3`
28+
- Linux: `python3 -m pip install --upgrade --force-reinstall --no-cache-dir KratosMultiphysics-all==10.3.0`
29+
- Windows: `python -m pip install --upgrade --force-reinstall --no-cache-dir KratosMultiphysics-all==10.3.0`
3030
* 4.2- To execute Kratos using your compiled binaries:
3131
* Fill the Kratos preferences windows with
3232
- Path to the python folder

dockers/create-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/bin/bash
22

33
# Change directory to the specified directory
4-
cd /tmp/dist/kratos-10.2.3/
4+
cd /tmp/dist/kratos-10.3.0/
55
find . -type f -name "*.unix.bat" -print0 | xargs -0 dos2unix
66

77
# Add execute permission to all .bat files in the directory
88
# chmod 755 *.bat
99

1010
# Create a tgz file from the directory
11-
tar -czf ../kratos-10.2.3-linux-64.tgz *
11+
tar -czf ../kratos-10.3.0-linux-64.tgz *
1212

dockers/deploy.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set krversion=10.2.3
1+
set krversion=10.3.0
22
set pyversion=3.11
33
@REM 3.10.10-alpine3.17
44
echo "Building kratos %krversion% on python %pyversion%"

dockers/dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM python:$pyversion
88
# Update pip
99
RUN pip install --upgrade pip
1010

11-
ARG krversion=10.2.3
11+
ARG krversion=10.3.0
1212

1313
# WORKDIR /tmp
1414
# COPY ./wheels/ ./wheels/

kratos.gid/kratos.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ proc Kratos::InitGlobalVariables {dir} {
173173
set namespaces [list ]
174174

175175
variable pip_packages_required
176-
set pip_packages_required [list KratosMultiphysics-all==10.2.1]
176+
set pip_packages_required [list KratosMultiphysics-all==10.3.0]
177177

178178
variable mesh_criteria_forced
179179
set mesh_criteria_forced [dict create]

kratos.gid/kratos.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Infoproblemtype version="1.0">
44
<Program>
55
<Name>Kratos</Name>
6-
<Version>10.2.3</Version>
6+
<Version>10.3.0</Version>
77
<ExecutableVersion></ExecutableVersion>
88
<MinimumGiDVersion>16.1.10d</MinimumGiDVersion>
99
<MaximumGiDVersion>17.99.99d</MaximumGiDVersion>

kratos.gid/kratos_default.spd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- -*- coding: utf-8; mode: SGML -*- -->
3-
<Kratos_data version='10.2.3'>
3+
<Kratos_data version='10.3.0'>
44
<style show_menubutton_about='0' show_menubutton_search='1'></style>
55
<groups/>
66
<units></units>

tools/create-release.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set VERSION=10.2.3
1+
set VERSION=10.3.0
22
@REM git checkout master
33
@REM git fetch -p
44
@REM git pull -p

0 commit comments

Comments
 (0)