Skip to content

Commit 1eef529

Browse files
committed
📦 Update all package dependencies
1 parent 32ad3a6 commit 1eef529

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ Bug fixes for timezone handling and restart behavior, plus new TimeProvider supp
1919
- Fix timezone conversion using configured timezone instead of system timezone — `ToUniversalTime()` incorrectly used the host timezone, causing wrong firing times when the host timezone differs from the configured one (522efd4)
2020
- Fix Start/Stop/Start skipping an interval — restarting the timer now recalculates the next occurrence from the current time (84f169f)
2121

22+
### Package dependencies
23+
24+
- Bump ncrontab from 3.3.1 to 3.4.0 ([#2](https://github.com/ramonsmits/CronTimer/pull/2))
25+
- Bump TimeZoneConverter from 6.0.1 to 7.2.0 ([#1](https://github.com/ramonsmits/CronTimer/pull/1))
26+
2227
### Internal
2328

2429
- Add SourceLink for debugger source mapping (579e119)
@@ -29,11 +34,12 @@ Bug fixes for timezone handling and restart behavior, plus new TimeProvider supp
2934
- Add justfile with build, test, and pack recipes (7ed9536)
3035
- Add GitHub Actions CI workflow with Ubuntu and Windows jobs (7ed9536, 6e72f0e)
3136
- Add NUnit test project with TimeProvider-based testing (df7ca81)
32-
33-
### Dependencies
34-
35-
- Bump ncrontab from 3.3.1 to 3.3.3 ([#2](https://github.com/ramonsmits/CronTimer/pull/2)) (295c6a5)
36-
- Bump TimeZoneConverter from 6.0.1 to 6.1.0 ([#1](https://github.com/ramonsmits/CronTimer/pull/1)) (e4c335e)
37+
- Bump Microsoft.Extensions.TimeProvider.Testing from 9.0.0 to 10.3.0
38+
- Bump Microsoft.NET.Test.Sdk from 17.12.0 to 18.0.1
39+
- Bump Microsoft.SourceLink.GitHub from 8.0.0 to 10.0.103
40+
- Bump MinVer from 6.0.0 to 7.0.0
41+
- Bump NUnit from 4.3.2 to 4.4.0
42+
- Bump NUnit3TestAdapter from 4.6.0 to 6.1.0
3743

3844
## [2.0.0] - 2022-12-29
3945

src/CronTimer.Tests/CronTimer.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
12-
<PackageReference Include="NUnit" Version="4.3.2" />
13-
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
12+
<PackageReference Include="NUnit" Version="4.4.0" />
13+
<PackageReference Include="NUnit3TestAdapter" Version="6.1.0" />
1414
</ItemGroup>
1515

1616
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
17-
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="9.0.0" />
17+
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="10.3.0" />
1818
</ItemGroup>
1919

2020
<ItemGroup>

src/CronTimer/CronTimer.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
</PropertyGroup>
2626

2727
<ItemGroup>
28-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
29-
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" />
30-
<PackageReference Include="ncrontab" Version="3.3.3" />
31-
<PackageReference Include="TimeZoneConverter" Version="6.1.0" />
28+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103" PrivateAssets="all" />
29+
<PackageReference Include="MinVer" Version="7.0.0" PrivateAssets="all" />
30+
<PackageReference Include="ncrontab" Version="3.4.0" />
31+
<PackageReference Include="TimeZoneConverter" Version="7.2.0" />
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<None Include="../../README.md" Pack="true" PackagePath="\"/>
35+
<None Include="../../README.md" Pack="true" PackagePath="\" />
3636
</ItemGroup>
3737
</Project>

0 commit comments

Comments
 (0)