Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Aldaviva committed Nov 12, 2023
1 parent ac8e606 commit 30ac319
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 16 deletions.
4 changes: 2 additions & 2 deletions DryerDuty/DryerDuty.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ServerGarbageCollection>true</ServerGarbageCollection>
<NoWarn>CS8524</NoWarn>

<Version>0.0.1</Version>
<Version>0.1.0</Version>
<Copyright>© 2023 Ben Hutchison</Copyright>
<Authors>Ben Hutchison</Authors>
<Company>$(Authors)</Company>
Expand All @@ -25,7 +25,7 @@

<ItemGroup>
<PackageReference Include="Iot.Device.Bindings" Version="3.0.0" />
<PackageReference Include="PagerDuty" Version="0.0.1" />
<PackageReference Include="PagerDuty" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions DryerDuty/DryerMonitor.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Device.Spi;
using Iot.Device.Adc;
using Pager.Duty.Requests;
using System.Device.Spi;
using System.Timers;
using Iot.Device.Adc;
using Pager.Duty;
using Timer = System.Timers.Timer;

namespace DryerDuty;
Expand Down
3 changes: 3 additions & 0 deletions DryerDuty/PagerDutyManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
using Pager.Duty;
using Pager.Duty.Exceptions;
using Pager.Duty.Requests;
using Pager.Duty.Responses;

namespace DryerDuty;

Expand Down
12 changes: 6 additions & 6 deletions DryerDuty/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
},
"PagerDuty": {
"type": "Direct",
"requested": "[0.0.1, )",
"resolved": "0.0.1",
"contentHash": "XS9nzxvRE4a2wyRYONTYoS/BJv0lGbM2hpXLiVqxjynN/xYY8/Te72o6hG49pP+EhYGkb3gh8cjJ72AaVS9OdA==",
"requested": "[1.0.0, )",
"resolved": "1.0.0",
"contentHash": "Fs3tyyJl+Y5DmjbMClqvWi0jbfwhQw6d+4RUZVPDEvTnm/r5kIVgEKKHzZfU9aB4trC908QW6YMZd2VCyBKNDg==",
"dependencies": {
"Newtonsoft.Json": "13.0.1"
"Newtonsoft.Json": "13.0.3"
}
},
"Microsoft.Extensions.Configuration": {
Expand Down Expand Up @@ -313,8 +313,8 @@
},
"Newtonsoft.Json": {
"type": "Transitive",
"resolved": "13.0.1",
"contentHash": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A=="
"resolved": "13.0.3",
"contentHash": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ=="
},
"runtime.linux-arm.runtime.native.System.IO.Ports": {
"type": "Transitive",
Expand Down
2 changes: 1 addition & 1 deletion Tests/DryerMonitorTest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using DryerDuty;
using Iot.Device.Adc;
using Microsoft.Extensions.Logging.Abstractions;
using Pager.Duty;
using Pager.Duty.Requests;

namespace Tests;

Expand Down
3 changes: 3 additions & 0 deletions Tests/PagerDutyManagerTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
using DryerDuty;
using Microsoft.Extensions.Logging.Abstractions;
using Pager.Duty;
using Pager.Duty.Exceptions;
using Pager.Duty.Requests;
using Pager.Duty.Responses;

namespace Tests;

Expand Down
8 changes: 4 additions & 4 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FakeItEasy" Version="7.4.0" />
<PackageReference Include="FakeItEasy" Version="8.0.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.1">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit 30ac319

Please sign in to comment.