From b201831d26d0dd950a0f26dad3e0af95d2aeacb9 Mon Sep 17 00:00:00 2001 From: Adrian Stevens Date: Tue, 10 Sep 2024 10:27:22 -0700 Subject: [PATCH] Fix firmware download message when firmware isn't found and bump version --- Source/v2/Meadow.Cli/Meadow.CLI.csproj | 2 +- Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs | 2 +- Source/v2/Meadow.Dfu/DfuUtils.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/v2/Meadow.Cli/Meadow.CLI.csproj b/Source/v2/Meadow.Cli/Meadow.CLI.csproj index f9f5cc01..11efacf3 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.56.0 + 2.0.57.0 AnyCPU http://developer.wildernesslabs.co/Meadow/Meadow.CLI/ https://github.com/WildernessLabs/Meadow.CLI diff --git a/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs b/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs index 99e2d9e7..c7eea877 100644 --- a/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs +++ b/Source/v2/Meadow.Cli/Properties/AssemblyInfo.cs @@ -6,5 +6,5 @@ namespace Meadow.CLI; public static class Constants { - public const string CLI_VERSION = "2.0.56.0"; + public const string CLI_VERSION = "2.0.57.0"; } \ No newline at end of file diff --git a/Source/v2/Meadow.Dfu/DfuUtils.cs b/Source/v2/Meadow.Dfu/DfuUtils.cs index 19f363ff..bbec4396 100644 --- a/Source/v2/Meadow.Dfu/DfuUtils.cs +++ b/Source/v2/Meadow.Dfu/DfuUtils.cs @@ -73,7 +73,7 @@ public static async Task FlashFile(string fileName, string? dfuSerialNumbe if (!File.Exists(fileName)) { - logger.LogError($"Unable to find file '{fileName}'. Please specify valid --File or download the latest with: meadow download os"); + logger.LogError($"Unable to find file '{fileName}'. Please specify valid --File or download the latest with: meadow firmware download"); return false; }