Skip to content

Commit 4a662d9

Browse files
committed
Bump version 2.2.2
2 parents d9bda52 + 52bd8e6 commit 4a662d9

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ venv/
3434

3535
# VSCode settings
3636
.vscode
37+
.vs
3738

3839
# autogenerated Python code
3940
*pb2*.py

ansys/api/additive/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.1
1+
2.2.2

ansys/api/additive/v0/additive_simulation.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ service SimulationService {
2020

2121
rpc DownloadFile(DownloadFileRequest) returns (stream DownloadFileResponse);
2222

23+
rpc DownloadLogs(DownloadLogsRequest) returns (stream DownloadFileResponse);
24+
2325
rpc Mesh(MeshRequest) returns (google.longrunning.Operation) {
2426
option (google.longrunning.operation_info) = {
2527
response_type: "MeshResponse"
@@ -72,6 +74,9 @@ message DownloadFileRequest {
7274
string remote_file_name = 1; // full path to file on server
7375
}
7476

77+
message DownloadLogsRequest {
78+
}
79+
7580
// DownloadFileResponse is used to transfer a file in chunks from
7681
// the server to a client. Content and content_md5 may be empty
7782
// if only a progress message is sent.

csharp/Ansys.Api.Additive.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
<Protobuf Include="../google/**/*.proto" ProtoRoot=".." GrpcServices="both" />
1515
</ItemGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Google.Protobuf" Version="3.26.1" />
17+
<PackageReference Include="Google.Protobuf" Version="3.28.3" />
1818
<PackageReference Include="Grpc" Version="2.46.6" />
19-
<PackageReference Include="Grpc.Tools" Version="2.50.0">
19+
<PackageReference Include="Grpc.Tools" Version="2.67.0">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2222
</PackageReference>

0 commit comments

Comments
 (0)