Skip to content

Commit 6ea50e1

Browse files
committed
build: Use fable-5.0.0-alpha.20
1 parent 79c4fe2 commit 6ea50e1

File tree

10 files changed

+659
-78
lines changed

10 files changed

+659
-78
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
"fable": {
13-
"version": "5.0.0-alpha.19",
13+
"version": "5.0.0-alpha.20",
1414
"commands": [
1515
"fable"
1616
],

examples/fastapi/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ obj/
1313
# Fable
1414
.fable/
1515
fable_modules/
16+
17+
# Generated Fable code
18+
src
19+
*.py
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
<TargetFramework>net9.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
</PropertyGroup>
7-
<ItemGroup>
8-
<ProjectReference Include="../../../Fable/src/Fable.Core/Fable.Core.fsproj" />
9-
</ItemGroup>
107
<ItemGroup>
118
<Compile Include="Models.fs" />
129
<Compile Include="App.fs" />

examples/flask/.paket/Paket.Restore.targets

Lines changed: 565 additions & 0 deletions
Large diffs are not rendered by default.

examples/pydantic/.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated Python code
2+
build/
3+
4+
# Python
5+
__pycache__/
6+
*.pyc
7+
.venv/
8+
9+
# .NET
10+
bin/
11+
obj/
12+
13+
# Fable
14+
.fable/
15+
fable_modules/
16+
17+
# Generated Fable code
18+
src
19+
*.py

paket.dependencies

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@ source https://api.nuget.org/v3/index.json
44
storage: none
55
framework: netstandard2.0, netstandard2.1, net6.0, net8.0, net9.0, net10.0
66

7-
nuget FSharp.Core >= 4.7.2 lowest_matching: true
8-
nuget Fable.Core 5.0.0-beta.2
7+
nuget Fable.Core 5.0.0-beta.4
98

109
group Test
1110
source https://api.nuget.org/v3/index.json
1211
storage: none
1312
framework: net9.0
1413

1514
nuget FSharp.Core
16-
nuget Fable.Core 5.0.0-beta.3
15+
nuget Fable.Core 5.0.0-beta.4
1716
nuget Microsoft.NET.Test.Sdk ~> 16
1817
nuget xunit ~> 2
1918
nuget xunit.runner.visualstudio ~> 2
@@ -24,7 +23,7 @@ group Examples
2423
framework: net9.0
2524

2625
nuget FSharp.Core
27-
nuget Fable.Core 5.0.0-beta.2
26+
nuget Fable.Core 5.0.0-beta.4
2827
nuget Feliz.ViewEngine
2928
nuget Zanaptak.TypedCssClasses
3029
nuget FSharp.Control.AsyncRx

paket.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ STORAGE: NONE
22
RESTRICTION: || (== net10.0) (== net6.0) (== net8.0) (== net9.0) (== netstandard2.0) (== netstandard2.1)
33
NUGET
44
remote: https://api.nuget.org/v3/index.json
5-
Fable.Core (5.0.0-beta.2)
5+
Fable.Core (5.0.0-beta.4)
66
FSharp.Core (>= 4.7.2)
77
FSharp.Core (4.7.2)
88

@@ -11,7 +11,7 @@ STORAGE: NONE
1111
RESTRICTION: == net9.0
1212
NUGET
1313
remote: https://api.nuget.org/v3/index.json
14-
Fable.Core (5.0.0-beta.2)
14+
Fable.Core (5.0.0-beta.4)
1515
FSharp.Core (>= 4.7.2)
1616
Feliz.ViewEngine (1.0.3)
1717
FSharp.Core (>= 4.7)
@@ -26,7 +26,7 @@ STORAGE: NONE
2626
RESTRICTION: == net9.0
2727
NUGET
2828
remote: https://api.nuget.org/v3/index.json
29-
Fable.Core (5.0.0-beta.3)
29+
Fable.Core (5.0.0-beta.4)
3030
FSharp.Core (>= 4.7.2)
3131
FSharp.Core (10.0.100)
3232
Microsoft.CodeCoverage (18.0.1)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[project]
22
name = "Fable.Python"
3-
version = "5.0.0-alpha.11"
3+
version = "5.0.0-alpha.20"
44
description = "Fable"
55
authors = [{ name = "Dag Brattli", email = "[email protected]" }]
66
requires-python = ">= 3.12, < 4"
77
readme = "README.md"
88
license = "MIT"
99
dependencies = [
10-
"fable-library==5.0.0a19",
10+
"fable-library==5.0.0a20",
1111
]
1212

1313
[project.urls]

test/Fable.Python.Test.fsproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
<ItemGroup>
1212
<ProjectReference Include="../src/Fable.Python.fsproj" />
1313
</ItemGroup>
14-
<ItemGroup>
15-
<ProjectReference Include="../../Fable/src/Fable.Core/Fable.Core.fsproj" />
16-
</ItemGroup>
1714
<ItemGroup>
1815
<Compile Include="Util.fs" />
1916
<Compile Include="TestAst.fs" />

uv.lock

Lines changed: 62 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)