Skip to content

Commit

Permalink
Versions updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed May 13, 2020
1 parent 4bd0df8 commit d1af632
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion cli/Squidex.CLI/Squidex.CLI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
using Squidex.CLI.Commands.Implementation.Sync.Schemas;
using Squidex.CLI.Commands.Implementation.Sync.Workflows;
using Squidex.CLI.Configuration;
using Squidex.ClientLibrary.Management;

namespace Squidex.CLI
{
Expand Down Expand Up @@ -57,7 +58,7 @@ public static int Main(string[] args)
}
catch (Exception ex)
{
Console.WriteLine("ERROR: {0}", ex.Message);
Console.WriteLine("ERROR: {0}", ex);
return -1;
}
}
Expand Down
2 changes: 1 addition & 1 deletion cli/Squidex.CLI/Squidex.CLI/Squidex.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<ToolCommandName>sq</ToolCommandName>
<Version>5.1</Version>
<Version>5.2</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandDotNet" Version="3.6.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ public override string ToString()

if (Details?.Count > 0)
{
sb.Append(": ");
if (!Message.EndsWith(".", StringComparison.OrdinalIgnoreCase) &&
!Message.EndsWith(":", StringComparison.OrdinalIgnoreCase) &&
!Message.EndsWith(",", StringComparison.OrdinalIgnoreCase))
{
sb.Append(":");
}

sb.Append(" ");
sb.Append(string.Join(", ", Details));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageIcon>logo-squared.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Squidex/squidex/</PackageProjectUrl>
<Version>5.0.0</Version>
<Version>5.1.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.0.0" />
Expand Down

0 comments on commit d1af632

Please sign in to comment.