Skip to content

Commit f9ea965

Browse files
committed
VersionBump : v0.8.0
1 parent 03f4903 commit f9ea965

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
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.7.0</Version>
11+
<Version>0.8.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.DataSeeder/OneTimeDataSeederService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public async Task StartAsync(CancellationToken ct = default) {
7575
while (seederGroup.SeederTypes.TryDequeue(out Type? seederType)) {
7676
AsyncServiceScope scope = serviceProvider.CreateAsyncScope();
7777
IServiceProvider scopeProvider = scope.ServiceProvider;
78+
7879
// Because of checks by the SeederGroup struct we know that the seeder inherits from ISeeder and thus is not null
7980
var seeder = (ISeeder) scopeProvider.GetRequiredService(seederType);
8081
Task seederTask = seeder.StartAsync(scopeProvider, ct);

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.7.0</Version>
11+
<Version>0.8.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/CodeOfChaos.Types.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</PackageId>
11-
<Version>0.7.0</Version>
11+
<Version>0.8.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>

0 commit comments

Comments
 (0)