Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"rollForward": false
},
"fantomas": {
"version": "6.3.16",
"version": "7.0.0",
"commands": [
"fantomas"
],
Expand Down
4 changes: 2 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Target.create "AssemblyInfo" (fun _ ->
// Clean build results

Target.create "Clean" (fun _ ->
!! "**/**/bin/" |> Shell.cleanDirs
!!"**/**/bin/" |> Shell.cleanDirs
//!! "**/**/obj/" |> Shell.cleanDirs

Shell.cleanDirs [ "bin"; "temp" ]
Expand Down Expand Up @@ -178,7 +178,7 @@ Target.create "Release" (fun _ ->
Target.create "BuildPackage" ignore

let sourceFiles =
!! "**/*.fs" ++ "**/*.fsx"
!!"**/*.fs" ++ "**/*.fsx"
-- "packages/**/*.*"
-- "paket-files/**/*.*"
-- ".fake/**/*.*"
Expand Down
5 changes: 5 additions & 0 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#### 2.2.1 - Jan 16, 2025

- Added allOf properties to the schema definition (#256)
- Update TypeProvider SDK (#257)

#### 2.2.0 - Jan 6, 2025

- hk: build with .NET 9
Expand Down
Loading
Loading