Skip to content

Commit 0884b4f

Browse files
Merge branch 'main' into build-proj
2 parents 62cd386 + a7de354 commit 0884b4f

File tree

132 files changed

+24883
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+24883
-74
lines changed

.config/dotnet-tools.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,23 @@
55
"fsdocs-tool": {
66
"version": "20.0.1",
77
"commands": [
8-
"fsdocs"
9-
]
8+
"paket"
9+
],
10+
"rollForward": false
1011
},
1112
"paket": {
1213
"version": "9.0.2",
1314
"commands": [
14-
"paket"
15-
]
15+
"fsdocs"
16+
],
17+
"rollForward": false
1618
},
1719
"fantomas": {
1820
"version": "7.0.1",
1921
"commands": [
2022
"fantomas"
21-
]
23+
],
24+
"rollForward": false
2225
}
2326
}
2427
}

.github/workflows/pull-requests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ jobs:
4848
run: dotnet tool restore
4949
- name: Restore packages
5050
run: dotnet paket restore
51+
- name: Format code
52+
run: dotnet fake build -t Format
5153
- name: Build and test
5254
run: dotnet run --project build/build.fsproj -- -t RunTests
5355
- name: Build (Debug)

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

33
The FSharp.Data package (`FSharp.Data.dll`) implements everything you need to access data in your F# applications and scripts. It implements F# type providers for working with structured file formats (CSV, HTML, JSON and XML) and for accessing the WorldBank data. It also includes helpers for parsing CSV, HTML and JSON files and for sending HTTP requests.
44

5+
The library supports both sample-based and schema-based type inference. The XML Type Provider supports XSD schemas, and the JSON Type Provider now supports JSON Schema for defining structured, strongly-typed access to JSON documents.
6+
57
We're open to contributions from anyone. If you want to help out but don't know where to start, you can take one of the [Up-For-Grabs](https://github.com/fsharp/FSharp.Data/labels/up-for-grabs) issues, or help to improve the [documentation][3].
68

79
You can see the version history [here](RELEASE_NOTES.md).
810

911
[![NuGet Badge](http://img.shields.io/nuget/v/FSharp.Data.svg?style=flat)](https://www.nuget.org/packages/FSharp.Data)
12+
[![CI](https://github.com/fsprojects/FSharp.Data/actions/workflows/ci.yml/badge.svg)](https://github.com/fsprojects/FSharp.Data/actions/workflows/ci.yml)
1013

1114
## Building
1215

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 6.5.0 - Unreleased
2+
- Add JSON Schema support to the JSON Type Provider
3+
- Add JSON validation against JSON Schema
4+
- Add documentation for working with JSON Schema
5+
16
## 6.4.1 - Oct 2 2024
27
- WorldBank URL fixed to https @pkese
38
- Updated Fake and Paket @Thorium

0 commit comments

Comments
 (0)