Skip to content

Commit 699cb0d

Browse files
committed
update RELEASE_NOTES and README with versions
fix some calls to generate docs to match new FSharp.Formatting APIs
1 parent 004ffcf commit 699cb0d

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

fcs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ which does things like:
6262
You can push the packages if you have permissions, either automatically using ``build Release`` or manually
6363

6464
set APIKEY=...
65-
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.31.0.0.nupkg %APIKEY% -Source https://nuget.org
66-
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.MSBuild.v12.31.0.0.nupkg %APIKEY% -Source https://nuget.org
67-
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.ProjectCracker.31.0.0.nupkg %APIKEY% -Source https://nuget.org
65+
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.32.0.0.nupkg %APIKEY% -Source https://nuget.org
66+
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.MSBuild.v12.32.0.0.nupkg %APIKEY% -Source https://nuget.org
67+
..\fsharp\.nuget\nuget.exe push %HOMEDRIVE%%HOMEPATH%\Downloads\FSharp.Compiler.Service.ProjectCracker.32.0.0.nupkg %APIKEY% -Source https://nuget.org
6868

6969
### Use of Paket and FAKE
7070

fcs/RELEASE_NOTES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
#### 32.0.0
2+
3+
* integrate dotnet/fsharp from e1b8537ee (2019-08-13) to 48f932cf8 (2019-09-27)
4+
* notable changes include:
5+
* (preview) nameof
6+
* (preview) open static classes
7+
* Fixed 64-bit integer literal parsing
8+
* Better exhaustiveness checking for byte and sbyte pattern matches
9+
* Better native resource handling
10+
* Script-host assembly load events
11+
* Tons of other ones, check the F# 4.7 release notes for them
12+
113
#### 31.0.0
214
* Integrate dotnet/fsharp from 5a8f454a1 to 05c558a61
315
* Notable changes include:

fcs/docsrc/tools/generate.fsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ open System.IO
2828
open Fake.FileHelper
2929
open FSharp.Literate
3030
open FSharp.MetadataFormat
31+
open FSharp.Formatting.Razor
3132

3233
let root = "."
3334

@@ -60,7 +61,7 @@ let fsfmt = __SOURCE_DIRECTORY__ @@ ".." @@ ".." @@ @"packages" @@ "FSharp.Form
6061
let buildReference () =
6162
CleanDir (output @@ "reference")
6263
for lib in referenceBinaries do
63-
MetadataFormat.Generate
64+
RazorMetadataFormat.Generate
6465
( bin @@ lib, output @@ "reference", layoutRoots,
6566
parameters = ("root", root)::info,
6667
sourceRepo = "https://github.com/fsharp/FSharp.Compiler.Service/tree/master/src",
@@ -87,7 +88,7 @@ let buildReference () =
8788
let buildDocumentation () =
8889
for dir in [content] do
8990
let sub = if dir.Length > content.Length then dir.Substring(content.Length + 1) else "."
90-
Literate.ProcessDirectory
91+
RazorLiterate.ProcessDirectory
9192
( dir, docTemplate, output @@ sub, replacements = ("root", root)::info,
9293
layoutRoots = layoutRoots, generateAnchors = true, processRecursive=false )
9394

0 commit comments

Comments
 (0)