Reputation: 2831
I'm trying to build F# myself, the official instructions include cloning the repo: git clone https://github.com/fsharp/fsharp
.
But if you look at the master branch of the repo, you'll see it is still version 3.1.1.25
, for example as stated in CHANGES.txt.
So where can I find build instructions or just the source for 3.1.2? The 3.1 branch is the same as the master branch...
Upvotes: 1
Views: 113
Reputation: 919
The official microsoft fsharp repo is https://visualfsharp.codeplex.com/ . This is the official repo for windows and the compiler/core libraries
the open edition is https://github.com/fsharp/fsharp and is used for packaging of osx, linux ( can build windows too ) and cross platform fix/test
all changes not related to osx/linux packaging are committed first to visualfsharp, and after accepted are merged into open edition
The visualfsharp is merged into open edition after some time. Last time was July 17 with 3.1.1.25 , see commits of Jul 17
for info about building visualfsharp see DEVGUIDE.html
Upvotes: 5