Skip to content

Commit

Permalink
Release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianstevens authored and jorgedevs committed Jan 10, 2024
1 parent 3ff8a4f commit 284f082
Show file tree
Hide file tree
Showing 45 changed files with 1,877 additions and 202 deletions.
6 changes: 4 additions & 2 deletions source/Meadow.Core/HealthReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,10 @@ public async Task Send()
ce.Measurements.Add("info.coprocessor_os_version", device.Information.CoprocessorOSVersion);
}

await service!.SendEvent(ce);
Resolver.Log.Trace($"health metrics sent");
if (await service!.SendEvent(ce))
{
Resolver.Log.Trace($"health metrics sent");
}
}
finally
{
Expand Down
13 changes: 8 additions & 5 deletions source/Meadow.Core/Meadow.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Meadow.Sdk/1.1.0">
<PropertyGroup>
<Version>1.7.0</Version>
<Authors>Wilderness Labs, Inc</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -11,7 +12,6 @@
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/WildernessLabs/Meadow.Core</RepositoryUrl>
<PackageTags>Meadow</PackageTags>
<Version>0.23.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RootNamespace>Meadow</RootNamespace>
Expand All @@ -21,12 +21,15 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Compile Remove="CryptographyService.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\icon.png" Link="icon.png" Pack="true" PackagePath="" />
<PackageReference Include="Meadow.Contracts" Version="1.6.0" />
<PackageReference Include="Meadow.Modbus" Version="1.6.0" />
<PackageReference Include="Meadow.MQTT" Version="1.6.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Meadow.Contracts" Version="1.7.0" />
<PackageReference Include="Meadow.Modbus" Version="1.7.0" />
<PackageReference Include="Meadow.MQTT" Version="1.7.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="2.2.0" />
</ItemGroup>
</Project>
Loading

0 comments on commit 284f082

Please sign in to comment.