Skip to content

Commit ada8b58

Browse files
committed
Update fantomas version to 7.0.3 in dotnet-tools configuration
1 parent 733445a commit ada8b58

File tree

11 files changed

+14
-4
lines changed

11 files changed

+14
-4
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"rollForward": false
1111
},
1212
"fantomas": {
13-
"version": "7.0.1",
13+
"version": "7.0.3",
1414
"commands": [
1515
"fantomas"
1616
],

src/IcedTasks/AsyncEx.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ open System.Runtime.ExceptionServices
77
open System.Collections.Generic
88
open IcedTasks.Nullness
99
open IcedTasks.TaskLike
10+
1011
type internal Async =
1112
static member inline map f x =
1213
async.Bind(x, (fun v -> async.Return(f v)))

src/IcedTasks/AutoOpens.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ module AutoOpens =
1818
[<assembly: AutoOpen("IcedTasks.CancellableValueTasks")>]
1919
[<assembly: AutoOpen("IcedTasks.CancellablePoolingValueTasks")>]
2020
[<assembly: AutoOpen("IcedTasks.CancellableTasks")>]
21-
do ()
21+
do ()

src/IcedTasks/CancellablePoolingValueTask.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ module CancellablePoolingValueTasks =
266266
/// <exclude />
267267
[<AutoOpen>]
268268
module HighPriority =
269-
269+
270270
open IcedTasks.AsyncEx
271271

272272
type AsyncEx with
@@ -339,6 +339,7 @@ module CancellablePoolingValueTasks =
339339
[<AutoOpen>]
340340
module AsyncExtensions =
341341
open IcedTasks.AsyncEx
342+
342343
type AsyncExBuilder with
343344

344345
member inline this.Source([<InlineIfLambda>] t: CancellableValueTask<'T>) : Async<'T> =

src/IcedTasks/CancellableTaskBuilderBase.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace IcedTasks.CancellableTaskBase
33
open IcedTasks
44
open IcedTasks.Nullness
55
open IcedTasks.TaskLike
6+
67
/// Contains methods to build Tasks using the F# computation expression syntax
78
[<AutoOpen>]
89
module CancellableTaskBase =

src/IcedTasks/CancellableValueTask.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
// to this software to the public domain worldwide. This software is distributed without any warranty.
1111

1212
namespace IcedTasks.CancellableValueTasks
13+
1314
open IcedTasks
1415
open IcedTasks.ValueTasks
1516
open IcedTasks.TaskLike
@@ -318,6 +319,7 @@ module CancellableValueTasks =
318319
[<AutoOpen>]
319320
module AsyncExtensions =
320321
open IcedTasks.AsyncEx
322+
321323
type AsyncExBuilder with
322324

323325
member inline this.Source([<InlineIfLambda>] t: CancellableValueTask<'T>) : Async<'T> =

src/IcedTasks/ColdTask.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
// to this software to the public domain worldwide. This software is distributed without any warranty.
1111

1212
namespace IcedTasks.ColdTasks
13+
1314
open IcedTasks
1415
open IcedTasks.Nullness
1516
open IcedTasks.TaskLike

src/IcedTasks/PoolingValueTask.fs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ open IcedTasks.TaskBase
1919
// to this software to the public domain worldwide. This software is distributed without any warranty.
2020

2121

22-
2322
/// Contains methods to build PoolingValueTasks using the F# computation expression syntax
2423
[<AutoOpen>]
2524
module PoolingValueTasks =

src/IcedTasks/TaskBuilderBase.fs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
namespace IcedTasks.TaskBase
2+
23
open IcedTasks.Nullness
34
open IcedTasks.TaskLike
5+
46
/// Contains methods to build Tasks using the F# computation expression syntax
57
[<AutoOpen>]
68
module TaskBase =

src/IcedTasks/TaskUnit.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ namespace IcedTasks
1212
// to this software to the public domain worldwide. This software is distributed without any warranty.
1313

1414
namespace IcedTasks.TasksUnit
15+
1516
open IcedTasks
1617
open IcedTasks.TaskLike
1718
open IcedTasks.TaskBase

0 commit comments

Comments
 (0)