Skip to content

Commit b8f88fc

Browse files
authored
Update to theta-003 (#71)
* Update to theta-003 * Update README
1 parent 784ad01 commit b8f88fc

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"fable": {
12-
"version": "4.0.0-snake-island-alpha-025",
12+
"version": "4.0.0-theta-003",
1313
"commands": [
1414
"fable"
1515
]

.fantomasignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Helpers.fs
33
Util.fs
44

55
# Ignore script files
6-
*.fsx
6+
*.fsx

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ how to deal with Python version handling.
3030
Prerequisite for compiling F# to Python using Fable:
3131

3232
```sh
33-
> dotnet tool install --global fable --version 4.0.0-snake-island-alpha-019
34-
> dotnet add package Fable.Core --version 4.0.0-snake-island-alpha-007
33+
> dotnet tool install --global fable --version 4.0.0-theta-003
34+
> dotnet add package Fable.Core --version 4.0.0-theta-001
3535
```
3636

3737
To use the `Fable.Python` library in your Fable project:
@@ -70,9 +70,12 @@ It contains example code for using Fable Python with:
7070

7171
## Libraries that uses or works with Fable Python
7272

73+
- [Femoto](https://github.com/Zaid-Ajaj/Femto)
7374
- [AsyncRx](https://github.com/dbrattli/AsyncRx)
74-
- [Fable.Sedlex](https://github.com/thautwarm/Fable.Sedlex)
75+
- [Fable.Giraffe](https://github.com/dbrattli/Fable.Giraffe)
76+
- [Fable.Requests](https://github.com/Zaid-Ajaj/Fable.Requests)
7577
- [Fable.SimpleJson.Python](https://github.com/Zaid-Ajaj/Fable.SimpleJson.Python)
78+
- [Fable.Sedlex](https://github.com/thautwarm/Fable.Sedlex)
7679
- [Feliz.ViewEngine](https://github.com/dbrattli/Feliz.ViewEngine)
7780
- [TypedCssClasses](https://github.com/zanaptak/TypedCssClasses)
7881
- [Typed-BNF](https://github.com/thautwarm/Typed-BNF#readme)

examples/timeflies/TimeFlies.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<Compile Include="Program.fs" />
1010
</ItemGroup>
1111
<ItemGroup>
12-
<PackageReference Include="Fable.Python" Version="0.17.0" />
13-
<PackageReference Include="Fable.Core" Version="4.0.0-snake-island-alpha-007" />
14-
<PackageReference Include="FSharp.Control.AsyncRx" Version="1.6.2" />
12+
<PackageReference Include="Fable.Python" Version="0.22.0" />
13+
<PackageReference Include="Fable.Core" Version="4.0.0-theta-001" />
14+
<PackageReference Include="FSharp.Control.AsyncRx" Version="1.6.3" />
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.2
8-
nuget Fable.Core >= 4.0.0-snake-island-alpha-007
8+
nuget Fable.Core ~> 4.0.0 prerelease
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 >= 4.0.0-snake-island-alpha-007
16+
nuget Fable.Core ~> 4.0.0 prerelease
1717
nuget Microsoft.NET.Test.Sdk ~> 16
1818
nuget XUnit ~> 2
1919
nuget xunit.runner.visualstudio ~> 2

0 commit comments

Comments
 (0)