Skip to content

Commit 33b1d75

Browse files
committed
Update deps
1 parent 0898fa5 commit 33b1d75

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
]
1616
},
1717
"fable-py": {
18-
"version": "4.0.0-alpha-025",
18+
"version": "4.0.0-alpha-032",
1919
"commands": [
2020
"fable-py"
2121
]

examples/flask/src/Flask.fsproj

Lines changed: 1 addition & 1 deletion
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>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<GenerateProgramFile>false</GenerateProgramFile>
66
<Author>Dag Brattli</Author>
77
<Copyright>Dag Brattli</Copyright>

examples/microbit/paket.dependencies

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ source https://api.nuget.org/v3/index.json
22
framework: net5.0
33
storage: none
44

5-
nuget Fable.Core.Experimental >= 4.0.0-alpha-002
5+
nuget Fable.Core.Experimental >= 4.0.0-alpha-022
66
nuget Fable.Python
77

88
nuget Fake.Core.Target

examples/microbit/src/MicroBit.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<ProjectReference Include="../../../src/Fable.Python.fsproj" />
1515
</ItemGroup>
1616
<ItemGroup>
17-
<PackageReference Include="Fable.Core.Experimental" Version="4.0.0-alpha-002" />
17+
<PackageReference Include="Fable.Core.Experimental" Version="4.0.0-alpha-022" />
1818
</ItemGroup>
1919
<Import Project="..\.paket\Paket.Restore.targets" />
2020
</Project>

examples/timeflies/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@ let mainAsync =
8181
[<EntryPoint>]
8282
let main argv =
8383
printfn "Started ..."
84-
Async.Start mainAsync
84+
Async.RunSynchronously mainAsync
8585

8686
0 // return an integer exit code

examples/timeflies/TimeFlies.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</ItemGroup>
1111
<ItemGroup>
1212
<PackageReference Include="Fable.Python" Version="0.16.0" />
13-
<PackageReference Include="Fable.Core.Experimental" Version="4.0.0-alpha-025" />
13+
<PackageReference Include="Fable.Core.Experimental" Version="4.0.0-alpha-032" />
1414
<PackageReference Include="FSharp.Control.AsyncRx" Version="1.6.0" />
1515
</ItemGroup>
1616
</Project>

paket.dependencies

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ storage: none
55
framework: net6.0, netstandard2.0, netstandard2.1
66

77
nuget FSharp.Core ~> 4.7
8-
nuget Fable.Core.Experimental >= 4.0.0-alpha-022
8+
nuget Fable.Core.Experimental >= 4.0.0-alpha-032
99

1010
group Test
1111
source https://api.nuget.org/v3/index.json
1212
storage: none
1313
framework: net6.0
1414

1515
nuget FSharp.Core
16-
nuget Fable.Core.Experimental >= 4.0.0-alpha-022
16+
nuget Fable.Core.Experimental >= 4.0.0-alpha-032
1717
nuget Microsoft.NET.Test.Sdk ~> 16
1818
nuget XUnit ~> 2
1919
nuget xunit.runner.visualstudio ~> 2

src/microbit/MicroBit.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,13 @@ type IPinLogo =
135135
[<Import("accelerometer", "microbit")>]
136136
let accelerometer: IAccelerometer = nativeOnly
137137

138-
[<Import("sleep", "microbit")>]
139138
/// Wait for n milliseconds. One second is 1000 milliseconds".
139+
[<Import("sleep", "microbit")>]
140140
let sleep (milliseconds: int) = nativeOnly
141141

142142

143-
[<Import("temperature", "microbit")>]
144143
/// Return the temperature of the micro:bit in degrees Celcius.
144+
[<Import("temperature", "microbit")>]
145145
let temperature () : float = nativeOnly
146146

147147

0 commit comments

Comments
 (0)