Skip to content

Commit dbbd46a

Browse files
authored
fix version tagging (#923)
1 parent 7127242 commit dbbd46a

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

fcs/RELEASE_NOTES.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
#### 34.0.0
2+
3+
Contains commits from 32b124966 to 5a0117048 from dotnet/fsharp. Notable changes include:
4+
5+
* lowered allocations for large strings and char arrays (notable source file texts)
6+
* improved support for byreflike rules with regards to type abbreviations
7+
* better support for scopes in recursive modules
8+
* better location of .net core reference assemblies
9+
* lowered allocations for several internal compiler structures
10+
* better error messages for anonymous record mismatches
11+
* FSharpChecker learned how to keep background symbol uses
12+
* Project cracker/project cracker tool were removed
13+
* Better support for consuming C# inref parameters
14+
* preview-level functionality for #r "nuget" in scripts
15+
* new services around simplifing names and finding unused declarations
16+
117
#### 33.0.1
218

319
Integrate dotnet/fsharp from 4f5f08320 to 7b25d7f82. Notable changes include:

fcs/build.fsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Target.create "NuGet" (fun _ ->
8484
Configuration = DotNet.BuildConfiguration.Release
8585
Common = packOpts.Common |> withDotnetExe |> DotNet.Options.withVerbosity (Some DotNet.Verbosity.Normal)
8686
MSBuildParams = { packOpts.MSBuildParams with
87-
Properties = packOpts.MSBuildParams.Properties @ [ "Version", assemblyVersion; "PackageReleaseNotes", release.Notes |> String.concat "\n" ] }
87+
Properties = packOpts.MSBuildParams.Properties @ [ "Version", assemblyVersion; "VersionPrefix", assemblyVersion; "PackageReleaseNotes", release.Notes |> String.concat "\n" ] }
8888
}) "FSharp.Compiler.Service.sln"
8989
)
9090

0 commit comments

Comments
 (0)