Skip to content

Commit af82ba0

Browse files
committed
VersionBump : v0.21.0
1 parent 68a49f9 commit af82ba0

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

src/CodeOfChaos.Types.DataSeeder/CodeOfChaos.Types.DataSeeder.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.Types.DataSeeder</PackageId>
11-
<Version>0.20.0</Version>
11+
<Version>0.21.0</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>A small library housing DataSeeder typings</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>

src/CodeOfChaos.Types.TypedValueStore/CodeOfChaos.Types.TypedValueStore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.Types.TypedValueStore</PackageId>
11-
<Version>0.20.0</Version>
11+
<Version>0.21.0</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>A small library housing TypedValueStore typings</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>

src/CodeOfChaos.Types.UnitOfWork.Contracts/CodeOfChaos.Types.UnitOfWork.Contracts.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<!-- Main package name -->
1111
<PackageId>CodeOfChaos.Types.UnitOfWork.Contracts</PackageId>
12-
<Version>0.20.0</Version>
12+
<Version>0.21.0</Version>
1313
<Authors>Anna Sas</Authors>
1414
<Description>A small library housing UnitOfWork typings for EntityFrameworkCore</Description>
1515
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>
@@ -30,7 +30,7 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.37.2" />
33+
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.39.4" />
3434
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.2" />
3535
</ItemGroup>
3636

src/CodeOfChaos.Types.UnitOfWork/CodeOfChaos.Types.UnitOfWork.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<!-- Main package name -->
99
<PackageId>CodeOfChaos.Types.UnitOfWork</PackageId>
10-
<Version>0.20.0</Version>
10+
<Version>0.21.0</Version>
1111
<Authors>Anna Sas</Authors>
1212
<Description>A small library housing UnitOfWork typings for EntityFrameworkCore</Description>
1313
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>
@@ -28,7 +28,7 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.37.2" />
31+
<PackageReference Include="CodeOfChaos.Extensions.DependencyInjection" Version="0.39.4" />
3232
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.2" />
3333
</ItemGroup>
3434

src/CodeOfChaos.Types/CodeOfChaos.Types.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- Main package name -->
1010
<PackageId>CodeOfChaos.Types</PackageId>
11-
<Version>0.20.0</Version>
11+
<Version>0.21.0</Version>
1212
<Authors>Anna Sas</Authors>
1313
<Description>A library of common types and classes within the CodeOfChaos project</Description>
1414
<PackageProjectUrl>https://github.com/code-of-chaos/cs-code_of_chaos-types</PackageProjectUrl>
@@ -38,7 +38,7 @@
3838
<PrivateAssets>all</PrivateAssets>
3939
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4040
</PackageReference>
41-
<PackageReference Include="CodeOfChaos.Extensions" Version="0.37.2" />
41+
<PackageReference Include="CodeOfChaos.Extensions" Version="0.39.4" />
4242
</ItemGroup>
4343

4444
<ItemGroup>

tests/Tests.CodeOfChaos.Types.DataSeeder/Tests.CodeOfChaos.Types.DataSeeder.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0"/>
1515
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2"/>
1616
<PackageReference Include="Moq" Version="4.20.72"/>
17-
<PackageReference Include="TUnit" Version="0.13.18" />
17+
<PackageReference Include="TUnit" Version="0.13.23" />
1818
<PackageReference Include="Bogus" Version="35.6.1"/>
1919
</ItemGroup>
2020

tests/Tests.CodeOfChaos.Types.TypedValueStore/Tests.CodeOfChaos.Types.TypedValueStore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<ItemGroup>
1515
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0"/>
1616
<PackageReference Include="Moq" Version="4.20.72"/>
17-
<PackageReference Include="TUnit" Version="0.13.18" />
17+
<PackageReference Include="TUnit" Version="0.13.23" />
1818
<PackageReference Include="Bogus" Version="35.6.1"/>
1919
</ItemGroup>
2020

tests/Tests.CodeOfChaos.Types.UnitOfWork/Tests.CodeOfChaos.Types.UnitOfWork.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.2"/>
1111
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.2"/>
1212
<PackageReference Include="Moq" Version="4.20.72"/>
13-
<PackageReference Include="TUnit" Version="0.13.18" />
13+
<PackageReference Include="TUnit" Version="0.13.23" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

tests/Tests.CodeOfChaos.Types/Tests.CodeOfChaos.Types.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<ItemGroup>
1414
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0"/>
1515
<PackageReference Include="Moq" Version="4.20.72"/>
16-
<PackageReference Include="TUnit" Version="0.13.18" />
16+
<PackageReference Include="TUnit" Version="0.13.23" />
1717
<PackageReference Include="Bogus" Version="35.6.1"/>
1818
</ItemGroup>
1919

0 commit comments

Comments
 (0)