From 2669de643c851161599a1af1510e526c4237d57b Mon Sep 17 00:00:00 2001 From: Adrian Stevens Date: Mon, 26 Feb 2024 16:45:43 -0800 Subject: [PATCH] Small fix to make room for file progress output --- Source/v2/Meadow.Cli/Commands/Current/File/FileWriteCommand.cs | 3 +++ Source/v2/Meadow.Cli/Meadow.CLI.csproj | 3 ++- Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Source/v2/Meadow.Cli/Commands/Current/File/FileWriteCommand.cs b/Source/v2/Meadow.Cli/Commands/Current/File/FileWriteCommand.cs index 9dcc5acc..4dabb554 100644 --- a/Source/v2/Meadow.Cli/Commands/Current/File/FileWriteCommand.cs +++ b/Source/v2/Meadow.Cli/Commands/Current/File/FileWriteCommand.cs @@ -69,6 +69,9 @@ protected override async ValueTask ExecuteCommand() } } } + + //add a black line after writing the file write progress + Logger?.LogInformation(string.Empty); } private string GetTargetFileName(int i) diff --git a/Source/v2/Meadow.Cli/Meadow.CLI.csproj b/Source/v2/Meadow.Cli/Meadow.CLI.csproj index 17bfa6ee..0a227268 100644 --- a/Source/v2/Meadow.Cli/Meadow.CLI.csproj +++ b/Source/v2/Meadow.Cli/Meadow.CLI.csproj @@ -10,7 +10,7 @@ Wilderness Labs, Inc Wilderness Labs, Inc true - 2.0.11.0-beta + 2.0.12.0-beta AnyCPU http://developer.wildernesslabs.co/Meadow/Meadow.CLI/ https://github.com/WildernessLabs/Meadow.CLI @@ -45,6 +45,7 @@ + diff --git a/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs b/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs index e3768987..0da2030d 100644 --- a/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs +++ b/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs @@ -6,6 +6,6 @@ namespace Meadow.CLI { public static class Constants { - public const string CLI_VERSION = "2.0.11.0"; + public const string CLI_VERSION = "2.0.12.0"; } } \ No newline at end of file