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 @@ -10,7 +10,7 @@
"rollForward": false
},
"fable": {
"version": "5.0.0-rc.1",
"version": "5.0.0-rc.3",
"commands": [
"fable"
],
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,5 @@ src/**/*.py

.ionide/

.fake
.fake
.DS_Store
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test_path := "test"
# Development mode: use local Fable repo instead of dotnet tool
# Usage: just dev=true test-python
dev := "false"
fable_repo := justfile_directory() / "../Fable"
fable_repo := justfile_directory() / "../fable/python-ex-not-defined"
fable := if dev == "true" { "dotnet run --project " + fable_repo / "src/Fable.Cli" + " --" } else { "dotnet fable" }

# Default recipe - show available commands
Expand Down
6 changes: 3 additions & 3 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ storage: none
framework: netstandard2.0, netstandard2.1, net6.0, net8.0, net9.0, net10.0

nuget FSharp.Core >= 5.0.0 lowest_matching: true
nuget Fable.Core 5.0.0-beta.5
nuget Fable.Core 5.0.0-rc.1

group Test
source https://api.nuget.org/v3/index.json
storage: none
framework: net9.0

nuget FSharp.Core
nuget Fable.Core 5.0.0-beta.5
nuget Fable.Core 5.0.0-rc.1
nuget Microsoft.NET.Test.Sdk ~> 16
nuget xunit ~> 2
nuget xunit.runner.visualstudio ~> 2
Expand All @@ -24,7 +24,7 @@ group Examples
framework: net10.0

nuget FSharp.Core
nuget Fable.Core 5.0.0-beta.5
nuget Fable.Core 5.0.0-rc.1
nuget Feliz.ViewEngine
nuget Zanaptak.TypedCssClasses
nuget FSharp.Control.AsyncRx
Expand Down
24 changes: 12 additions & 12 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ STORAGE: NONE
RESTRICTION: || (== net10.0) (== net6.0) (== net8.0) (== net9.0) (== netstandard2.0) (== netstandard2.1)
NUGET
remote: https://api.nuget.org/v3/index.json
Fable.Core (5.0.0-beta.5)
Fable.Core (5.0.0-rc.1)
FSharp.Core (>= 4.7.2)
FSharp.Core (5.0)

Expand All @@ -11,13 +11,13 @@ STORAGE: NONE
RESTRICTION: == net10.0
NUGET
remote: https://api.nuget.org/v3/index.json
Fable.Core (5.0.0-beta.5)
Fable.Core (5.0.0-rc.1)
FSharp.Core (>= 4.7.2)
Feliz.ViewEngine (1.0.3)
FSharp.Core (>= 4.7)
FSharp.Control.AsyncRx (1.6.7)
FSharp.Core (>= 6.0.6)
FSharp.Core (10.0.103)
FSharp.Core (11.0.100)
Zanaptak.TypedCssClasses (1.0)
FSharp.Core (>= 4.3.4)

Expand All @@ -26,22 +26,22 @@ STORAGE: NONE
RESTRICTION: == net9.0
NUGET
remote: https://api.nuget.org/v3/index.json
Fable.Core (5.0.0-beta.5)
Fable.Core (5.0.0-rc.1)
FSharp.Core (>= 4.7.2)
FSharp.Core (10.0.103)
Microsoft.CodeCoverage (18.0.1)
FSharp.Core (11.0.100)
Microsoft.CodeCoverage (18.3)
Microsoft.NET.Test.Sdk (16.11)
Microsoft.CodeCoverage (>= 16.11)
Microsoft.TestPlatform.TestHost (>= 16.11)
Microsoft.TestPlatform.ObjectModel (18.0.1)
Microsoft.TestPlatform.ObjectModel (18.3)
System.Reflection.Metadata (>= 8.0)
Microsoft.TestPlatform.TestHost (18.0.1)
Microsoft.TestPlatform.ObjectModel (>= 18.0.1)
Microsoft.TestPlatform.TestHost (18.3)
Microsoft.TestPlatform.ObjectModel (>= 18.3)
Newtonsoft.Json (>= 13.0.3)
Newtonsoft.Json (13.0.4)
System.Collections.Immutable (10.0.3)
System.Reflection.Metadata (10.0.3)
System.Collections.Immutable (>= 10.0.3)
System.Collections.Immutable (10.0.5)
System.Reflection.Metadata (10.0.5)
System.Collections.Immutable (>= 10.0.5)
xunit (2.9.3)
xunit.analyzers (>= 1.18)
xunit.assert (>= 2.9.3)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires-python = ">= 3.12, < 4"
readme = "README.md"
license = "MIT"
dependencies = [
"fable-library==5.0.0a24",
"fable-library==5.0.0rc3",
]

[project.urls]
Expand Down
Loading
Loading