Skip to content

Commit 137d258

Browse files
committed
Bump version 5.0.3
2 parents 37e0313 + 5900a31 commit 137d258

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Build python package
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Setup Python
2626
uses: actions/setup-python@v4
2727
with:
@@ -46,17 +46,17 @@ jobs:
4646
python -c "from ${{ env.PACKAGE_NAME }} import __version__; print(__version__)"
4747
4848
- name: Upload packages
49-
uses: actions/upload-artifact@v3
49+
uses: actions/upload-artifact@v4
5050
with:
51-
name: ansys-api-additive-packages
51+
name: ansys-api-additive-packages-python
5252
path: dist/
5353
retention-days: 7
5454

5555
nuget:
5656
name: Build nuget package
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v4
6060

6161
- name: Setup dotnet
6262
uses: actions/setup-dotnet@v3
@@ -71,9 +71,9 @@ jobs:
7171
rm -rf nuget_package
7272
dotnet pack csharp/Ansys.Api.Additive.csproj -c Release -o nuget_package -p:Version=${version}
7373
- name: Upload package artifact
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
76-
name: ansys-api-additive-packages
76+
name: ansys-api-additive-packages-nuget
7777
path: nuget_package/
7878
retention-days: 7
7979

@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
python-version: ${{ env.MAIN_PYTHON_VERSION }}
8989

90-
- uses: actions/download-artifact@v3
90+
- uses: actions/download-artifact@v4
9191

9292
- name: Display structure of downloaded files
9393
run: ls -R
@@ -121,7 +121,7 @@ jobs:
121121
with:
122122
dotnet-version: ${{ env.DOTNET_VERSION }}
123123

124-
- uses: actions/download-artifact@v3
124+
- uses: actions/download-artifact@v4
125125

126126
- name: Display structure of downloaded files
127127
run: ls -R

ansys/api/additive/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.2
1+
5.0.3

ansys/api/additive/v0/additive_domain.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ message AdditiveMaterial {
7070
repeated ThermalPropertiesDataPoint thermal_properties_data_points = 35;
7171
repeated CharacteristicWidthDataPoint characteristic_width_data_points = 36;
7272
string description = 37;
73+
double cooling_rate_sim_coeff_a = 38;
74+
double cooling_rate_sim_coeff_b = 39;
7375
}
7476

7577
message CharacteristicWidthDataPoint {

0 commit comments

Comments
 (0)