Skip to content

Commit 968bf9f

Browse files
committed
[add] .NET 6.0 support
[add] .NET Standard 2.1 support [add] .NET Framework 4.8 support [up] Simplify.DI bump to 4.2.10 [up] Simplify.System bump to 1.6.2 [up] Microsoft.Extensions.Configuration bump to 3.1.32
1 parent d0e381b commit 968bf9f

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

src/Simplify.Scheduler/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [1.3.1] - 2023-08-24
4+
5+
### Added
6+
7+
- .NET 6.0 support
8+
- .NET Standard 2.1 support
9+
- .NET Framework 4.8 support
10+
11+
### Dependencies
12+
13+
- Simplify.DI bump to 4.2.10
14+
- Simplify.System bump to 1.6.2
15+
- Microsoft.Extensions.Configuration bump to 3.1.32
16+
317
## [1.3] - 2021-11-18
418

519
### Added

src/Simplify.Scheduler/Simplify.Scheduler.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2.0</TargetFrameworks>
3+
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net48</TargetFrameworks>
44
<LangVersion>latest</LangVersion>
55
<Nullable>enable</Nullable>
66
<EmbedUntrackedSources>true</EmbedUntrackedSources>
77
<IncludeSymbols>true</IncludeSymbols>
88
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1010

11-
<Version>1.3</Version>
11+
<Version>1.3.1</Version>
1212

1313
<Authors>Alexander Krylkov</Authors>
1414
<Product>Simplify</Product>
@@ -23,10 +23,10 @@
2323
<PackageReleaseNotes>See https://github.com/SimplifyNet/Simplify/tree/master/src/Simplify.Scheduler/CHANGELOG.md for details</PackageReleaseNotes>
2424
</PropertyGroup>
2525
<ItemGroup>
26-
<PackageReference Include="ncrontab" Version="3.3.*" />
27-
<PackageReference Include="Simplify.DI" Version="4.1.*" />
28-
<PackageReference Include="Simplify.System" Version="1.6.*" />
29-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.*" />
26+
<PackageReference Include="ncrontab" Version="3.3.1" />
27+
<PackageReference Include="Simplify.DI" Version="4.2.10" />
28+
<PackageReference Include="Simplify.System" Version="1.6.2" />
29+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.32" />
3030
</ItemGroup>
3131
<ItemGroup>
3232
<None Include="..\..\images\icon.png" Pack="true" Visible="false" PackagePath="" />

0 commit comments

Comments
 (0)