Skip to content

Commit

Permalink
Merge branch 'master' into deps-downgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
asimmon committed Feb 22, 2023
2 parents cc005bc + bc58da6 commit 394caba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/MediatR.Contracts/MediatR.Contracts.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Deterministic>true</Deterministic>
<Version>2.0.0</Version>
<Version>2.0.1</Version>
<RootNamespace>MediatR</RootNamespace>

</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/MediatR/MediatR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MediatR.Contracts" Version="[2.0.0, 3.0.0)" />
<PackageReference Include="MediatR.Contracts" Version="[2.0.1, 3.0.0)" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
Expand Down
2 changes: 1 addition & 1 deletion test/MediatR.Tests/NotificationPublisherTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public async Task Should_handle_sequentially_by_default()

timer.Stop();

timer.ElapsedMilliseconds.ShouldBeGreaterThan(750);
timer.ElapsedMilliseconds.ShouldBeGreaterThanOrEqualTo(750);

_output.WriteLine(timer.ElapsedMilliseconds.ToString());
}
Expand Down

0 comments on commit 394caba

Please sign in to comment.