Skip to content

Commit 1f33cbe

Browse files
Release 10.3.0 preparation
1 parent 95e1984 commit 1f33cbe

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

kratos.gid/kratos.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- -*- coding: utf-8;-*- -->
31
<Infoproblemtype version="1.0">
42
<Program>
53
<Name>Kratos</Name>
64
<Version>10.3.0</Version>
75
<Production>0</Production>
8-
<ExecutableVersion></ExecutableVersion>
6+
<ExecutableVersion />
97
<MinimumGiDVersion>16.1.10d</MinimumGiDVersion>
108
<MaximumGiDVersion>17.99.99d</MaximumGiDVersion>
119
<CustomLibAutomatic>0</CustomLibAutomatic>
@@ -48,4 +46,4 @@ Kratos is FREE because is devoted mainly to developers, researchers and students
4846
</Description>
4947

5048
</Program>
51-
</Infoproblemtype>
49+
<Production>1</Production></Infoproblemtype>

tools/create-release.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ git push --tags --force
2525
cd ..
2626
mkdir dist
2727
set FOLDER=dist\kratos-%VERSION%
28+
@REM delete the folder recursive if it exists
29+
if exist %FOLDER% rmdir /s /q %FOLDER%
2830
mkdir %FOLDER%
2931
xcopy /s/e/y/q kratos.gid %FOLDER%\kratos.gid\
3032
copy LICENSE.md %FOLDER%\kratos.gid\LICENSE.md

tools/prepare-release-files.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ def get_version_number(file_name):
2222
else:
2323
production = ET.SubElement(root, 'Production')
2424
production.text = '1'
25+
tree.write(file_name)
26+
2527

2628
file_name = "../kratos.gid/kratos.spd"
2729
version = get_version_number(file_name)

0 commit comments

Comments
 (0)