Skip to content

Commit 8959ea6

Browse files
committed
[up] ncrontab to 3.3.3
[up] Microsoft.Extensions.Configuration to 9.0.6 [up] Simplify.DI to 4.2.11 [deps] .NET 6 support removed [deps] .NET 8, 9 support added
1 parent c178142 commit 8959ea6

3 files changed

Lines changed: 22 additions & 6 deletions

File tree

src/Simplify.Scheduler/CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,28 @@
11
# Changelog
22

3+
## [1.6.0] - 2025-06-15
4+
5+
### Removed
6+
7+
- .NET 6.0 support
8+
9+
### Added
10+
11+
- .NET 8.0 support
12+
- .NET 9.0 support
13+
14+
### Dependencies
15+
16+
- Simplify.DI bump to 4.2.11
17+
- Microsoft.Extensions.Configuration bump to 3.1.32
18+
319
## [1.5.0] - 2024-06-02
420

521
### Added
622

723
- Logging crontab parse errors to SchedulerJobsHandler.OnException (#490)
824
- MultitaskScheduler.StartAsync method (To use scheduler asynchronously from `async Task Main` method) (#491)
925

10-
1126
## [1.4.0] - 2024-01-09
1227

1328
### Added
@@ -27,7 +42,7 @@
2742

2843
- Simplify.DI bump to 4.2.10
2944
- Simplify.System bump to 1.6.2
30-
- Microsoft.Extensions.Configuration bump to 3.1.32
45+
- Microsoft.Extensions.Configuration bump to 9.0.6
3146

3247
## [1.3] - 2021-11-18
3348

src/Simplify.Scheduler/Jobs/Crontab/CrontabProcessor.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.Linq;
44
using NCrontab;
55
using Simplify.System;
6+
using TimeProvider = Simplify.System.TimeProvider;
67

78
namespace Simplify.Scheduler.Jobs.Crontab;
89

src/Simplify.Scheduler/Simplify.Scheduler.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net48</TargetFrameworks>
3+
<TargetFrameworks>net9.0;net8.0;netstandard2.1;netstandard2.0;net48</TargetFrameworks>
44
<LangVersion>latest</LangVersion>
55
<Nullable>enable</Nullable>
66
<EmbedUntrackedSources>true</EmbedUntrackedSources>
@@ -24,10 +24,10 @@
2424
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify/tree/master/src/Simplify.Scheduler/CHANGELOG.md for details</PackageReleaseNotes>
2525
</PropertyGroup>
2626
<ItemGroup>
27-
<PackageReference Include="ncrontab" Version="3.3.1" />
28-
<PackageReference Include="Simplify.DI" Version="4.2.10" />
27+
<PackageReference Include="ncrontab" Version="3.3.3" />
28+
<PackageReference Include="Simplify.DI" Version="4.2.11" />
2929
<PackageReference Include="Simplify.System" Version="1.6.2" />
30-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.32" />
30+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.6" />
3131
</ItemGroup>
3232
<ItemGroup>
3333
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />

0 commit comments

Comments
 (0)