Skip to content

Commit 9201e27

Browse files
authored
Merge pull request #27 from mta-solutions/drop-support-for-dotnet-6
Drop Support for .NET 6.0
2 parents 56b7a2f + c641815 commit 9201e27

File tree

9 files changed

+29
-17
lines changed

9 files changed

+29
-17
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for fsharp-data-validation
22

3+
## 3.0.0 - 01/23/2025
4+
5+
* Drop support for .NET 6.0.
6+
37
## 2.2.0 - 12/12/2024
48

59
* Address package vulnerabilities.

samples/FSharp.Data.Validation.Samples/FSharp.Data.Validation.Samples.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Update="FSharp.Core" Version="[6.0.6,)" />
19+
<PackageReference Update="FSharp.Core" Version="[8.0.100,)" />
2020
</ItemGroup>
2121

2222
</Project>

samples/FSharp.Data.Validation.Samples/packages.lock.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"net8.0": {
55
"FSharp.Core": {
66
"type": "Direct",
7-
"requested": "[6.0.6, )",
8-
"resolved": "6.0.6",
9-
"contentHash": "oSbTFqPtsp+EGkWAHwYIYYHyXLJRnbzVwcmM06kmXNLdWsp3P6XZViPSJJ2qUQS8feNK+nyPA0qtpNZXANGB7w=="
7+
"requested": "[8.0.100, )",
8+
"resolved": "8.0.100",
9+
"contentHash": "ZOVZ/o+jI3ormTZOa28Wh0tSRoyle1f7lKFcUN61sPiXI7eDZu8eSveFybgTeyIEyW0ujjp31cp7GOglDgsNEg=="
1010
},
1111
"FSharpPlus": {
1212
"type": "Transitive",
@@ -19,7 +19,7 @@
1919
"fsharp.data.validation": {
2020
"type": "Project",
2121
"dependencies": {
22-
"FSharp.Core": "[6.0.6, )",
22+
"FSharp.Core": "[8.0.100, )",
2323
"FSharpPlus": "[1.4.0, )"
2424
}
2525
}

samples/GettingStarted/GettingStarted.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
</ItemGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Update="FSharp.Core" Version="[6.0.6,)" />
15+
<PackageReference Update="FSharp.Core" Version="[8.0.100,)" />
1616
</ItemGroup>
1717
</Project>

samples/GettingStarted/packages.lock.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"net8.0": {
55
"FSharp.Core": {
66
"type": "Direct",
7-
"requested": "[6.0.6, )",
8-
"resolved": "6.0.6",
9-
"contentHash": "oSbTFqPtsp+EGkWAHwYIYYHyXLJRnbzVwcmM06kmXNLdWsp3P6XZViPSJJ2qUQS8feNK+nyPA0qtpNZXANGB7w=="
7+
"requested": "[8.0.100, )",
8+
"resolved": "8.0.100",
9+
"contentHash": "ZOVZ/o+jI3ormTZOa28Wh0tSRoyle1f7lKFcUN61sPiXI7eDZu8eSveFybgTeyIEyW0ujjp31cp7GOglDgsNEg=="
1010
},
1111
"FSharpPlus": {
1212
"type": "Transitive",
@@ -19,7 +19,7 @@
1919
"fsharp.data.validation": {
2020
"type": "Project",
2121
"dependencies": {
22-
"FSharp.Core": "[6.0.6, )",
22+
"FSharp.Core": "[8.0.100, )",
2323
"FSharpPlus": "[1.4.0, )"
2424
}
2525
}

src/FSharp.Data.Validation.Async/FSharp.Data.Validation.Async.fsproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
</PropertyGroup>
77

@@ -13,4 +13,8 @@
1313
<ProjectReference Include="..\FSharp.Data.Validation\FSharp.Data.Validation.fsproj" />
1414
</ItemGroup>
1515

16+
<ItemGroup>
17+
<PackageReference Update="FSharp.Core" Version="[8.0.100,)" />
18+
</ItemGroup>
19+
1620
</Project>

src/FSharp.Data.Validation.Giraffe/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Revision history for fsharp-data-validation-giraffe
22

3+
## 3.0.0 - 01/23/2025
4+
5+
* Drop support for .NET 6.0.
6+
37
## 2.0.1 - 12/12/2024
48

59
* Address package vulnerabilities.

src/FSharp.Data.Validation.Giraffe/FSharp.Data.Validation.Giraffe.fsproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<Description>Model validation helpers for Giraffe.</Description>
77
<PackageReadmeFile>README.md</PackageReadmeFile>
@@ -20,8 +20,8 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Update="FSharp.Core" Version="[6.0.6,)" />
24-
<PackageReference Include="Giraffe" Version="[6,)" />
25-
<PackageReference Include="System.Text.Json" Version="[6.0.11,)" />
23+
<PackageReference Update="FSharp.Core" Version="[8.0.100,)" />
24+
<PackageReference Include="Giraffe" Version="[7,)" />
25+
<PackageReference Include="System.Text.Json" Version="[8.0.5,)" />
2626
</ItemGroup>
2727
</Project>

src/FSharp.Data.Validation/FSharp.Data.Validation.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<Description>A functional, transformation-oriented approach to data validation.</Description>
77
<PackageReadmeFile>README.md</PackageReadmeFile>
@@ -30,7 +30,7 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<PackageReference Update="FSharp.Core" Version="[6.0.6,)" />
33+
<PackageReference Update="FSharp.Core" Version="[8.0.100,)" />
3434
<PackageReference Include="FSharpPlus" Version="[1.4.0,)" />
3535
</ItemGroup>
3636
</Project>

0 commit comments

Comments
 (0)