Skip to content

Commit ab29adf

Browse files
committed
Update messaging lib
Signed-off-by: Victor Chang <[email protected]>
1 parent 6a7d274 commit ab29adf

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

doc/dependency_decisions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -791,14 +791,14 @@
791791
- :who: mocsharp
792792
:why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE)
793793
:versions:
794-
- 0.1.9
794+
- 0.1.10
795795
:when: 2022-08-16 23:06:21.051573547 Z
796796
- - :approve
797797
- Monai.Deploy.Messaging.RabbitMQ
798798
- :who: mocsharp
799799
:why: Apache-2.0 (https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE)
800800
:versions:
801-
- 0.1.9
801+
- 0.1.10
802802
:when: 2022-08-16 23:06:21.511789690 Z
803803
- - :approve
804804
- Monai.Deploy.Storage

docs/compliance/third-party-licenses.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6870,14 +6870,14 @@ Apache License
68706870

68716871

68726872
<details>
6873-
<summary>Monai.Deploy.Messaging 0.1.9</summary>
6873+
<summary>Monai.Deploy.Messaging 0.1.10</summary>
68746874

68756875
## Monai.Deploy.Messaging
68766876

6877-
- Version: 0.1.9
6877+
- Version: 0.1.10
68786878
- Authors: MONAI Consortium
68796879
- Project URL: https://github.com/Project-MONAI/monai-deploy-messaging
6880-
- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging/0.1.9)
6880+
- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging/0.1.10)
68816881
- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE)
68826882

68836883

@@ -7098,14 +7098,14 @@ By downloading this software, you agree to the license terms & all licenses list
70987098

70997099

71007100
<details>
7101-
<summary>Monai.Deploy.Messaging.RabbitMQ 0.1.9</summary>
7101+
<summary>Monai.Deploy.Messaging.RabbitMQ 0.1.10</summary>
71027102

71037103
## Monai.Deploy.Messaging.RabbitMQ
71047104

7105-
- Version: 0.1.9
7105+
- Version: 0.1.10
71067106
- Authors: MONAI Consortium
71077107
- Project URL: https://github.com/Project-MONAI/monai-deploy-messaging
7108-
- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging.RabbitMQ/0.1.9)
7108+
- Source: [NuGet](https://www.nuget.org/packages/Monai.Deploy.Messaging.RabbitMQ/0.1.10)
71097109
- License: [Apache-2.0](https://github.com/Project-MONAI/monai-deploy-messaging/raw/main/LICENSE)
71107110

71117111

src/Api/Monai.Deploy.InformaticsGateway.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
</PackageReference>
3131
<PackageReference Include="Macross.Json.Extensions" Version="3.0.0" />
3232
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="6.0.10" />
33-
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.9" />
33+
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.10" />
3434
<PackageReference Include="Monai.Deploy.Storage" Version="0.2.10" />
3535
</ItemGroup>
3636

src/Configuration/Monai.Deploy.InformaticsGateway.Configuration.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--
1+
<!--
22
~ Copyright 2021-2022 MONAI Consortium
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");
@@ -30,7 +30,7 @@
3030
</PackageReference>
3131
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.2" />
3232
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
33-
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.9" />
33+
<PackageReference Include="Monai.Deploy.Messaging" Version="0.1.10" />
3434
<PackageReference Include="Monai.Deploy.Storage" Version="0.2.10" />
3535
<PackageReference Include="System.IO.Abstractions" Version="17.2.3" />
3636
</ItemGroup>

src/InformaticsGateway/Monai.Deploy.InformaticsGateway.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--
1+
<!--
22
~ Copyright 2022 MONAI Consortium
33
~
44
~ Licensed under the Apache License, Version 2.0 (the "License");
@@ -48,7 +48,7 @@
4848
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
4949
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
5050
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
51-
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.9" />
51+
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.10" />
5252
<PackageReference Include="Monai.Deploy.Storage" Version="0.2.10" />
5353
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.2.10" />
5454
<PackageReference Include="NLog.Web.AspNetCore" Version="5.1.5" />

tests/Integration.Test/Monai.Deploy.InformaticsGateway.Integration.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
3434
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
3535
<PackageReference Include="Minio" Version="4.0.6" />
36-
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.9" />
36+
<PackageReference Include="Monai.Deploy.Messaging.RabbitMQ" Version="0.1.10" />
3737
<PackageReference Include="Monai.Deploy.Storage.MinIO" Version="0.2.10" />
3838
<PackageReference Include="Moq" Version="4.18.2" />
3939
<PackageReference Include="Polly" Version="7.2.3" />

0 commit comments

Comments
 (0)