Skip to content

Commit

Permalink
Bump version and update packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihlus committed Dec 20, 2020
1 parent efa03c9 commit 4b7b3f5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
9 changes: 5 additions & 4 deletions .idea/.idea.Remora.Commands/.idea/riderModule.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@

<!-- JetBrains Annotations -->
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" PrivateAssets="all" />
<PackageReference Include="JetBrains.Annotations" Version="2020.3.0" PrivateAssets="all" />
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions Remora.Commands/Remora.Commands.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0-beta4</Version>
<Version>1.0.0-beta5</Version>
<Description>A platform-agnostic command parser and dispatcher.</Description>
<PackageReleaseNotes>Added a way to conditionally execute commands.</PackageReleaseNotes>
<PackageReleaseNotes>Implement support for preparsed name-value pairs.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="3.1.9" />
<PackageReference Include="Remora.Results" Version="1.2.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="5.0.0" />
<PackageReference Include="Remora.Results" Version="1.3.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion Remora.Commands/Services/CommandService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private async Task<CommandExecutionResult> TryExecuteAsync
(
BoundCommandNode boundCommandNode,
IServiceProvider services,
object[]? additionalParameters,
object[] additionalParameters,
CancellationToken ct = default
)
{
Expand Down
4 changes: 2 additions & 2 deletions Tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="coverlet.collector" Version="1.3.0">
<PrivateAssets>all</PrivateAssets>
Expand All @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789.`))' == 'netcoreapp'">
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="xunit.runner.console" Version="2.4.1" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Tests/Remora.Commands.Tests/Remora.Commands.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 4b7b3f5

Please sign in to comment.