Skip to content

Commit c770c9f

Browse files
committed
Merge branch 'master' of https://github.com/fsharp/fsharp
2 parents 50f071a + 7171700 commit c770c9f

File tree

19 files changed

+181
-227
lines changed

19 files changed

+181
-227
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@ script:
2020
- xbuild ./src/fsharp-library-unittests-build.proj /p:TargetFramework=net40 /p:Configuration=Release
2121
- (cd tests/projects; ./build.sh)
2222
- (cd tests/fsharp/core; ./run-opt.sh)
23+
24+
matrix:
25+
allow_failures:
26+
- mono: latest

CHANGES.txt renamed to CHANGELOG-fsharp.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
4.0.1.1
2+
* Integrate Microsoft\visualfsharp to 8111c63. See CHANGELOG-visualfsharp.md for changes from Microsoft\visualfsharp
3+
* 04cd959 - fix problem with loop optimization
4+
* d995c59 - Assume we are inside XBuild when 4.5/Mono.Posix.dll exists
5+
* Fix [#483](https://github.com/fsharp/fsharp/issues/483) - Call to Type.GetType for a missing type causes FSI on Mono to produce an erroneous error
6+
17
4.0.0.4
28
* Integrate Microsoft\visualfsharp to 2d413fb94. See CHANGELOG.md for changes from Microsoft\visualfsharp
39

File renamed without changes.

FSharp.Core.Nuget/.nuget/NuGet.Config

Lines changed: 0 additions & 6 deletions
This file was deleted.

FSharp.Core.Nuget/.nuget/NuGet.exe

-1.53 MB
Binary file not shown.

FSharp.Core.Nuget/.nuget/NuGet.targets

Lines changed: 0 additions & 138 deletions
This file was deleted.

FSharp.Core.Nuget/.nuget/packages.config

Lines changed: 0 additions & 4 deletions
This file was deleted.

appveyor.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# the version under development, update after a release
3-
$version = '4.0.1.1'
3+
$version = '4.0.1.2'
44

55
function isVersionTag($tag){
66
$v = New-Object Version
@@ -18,7 +18,7 @@ if ($env:appveyor){
1818
$version = $version + '-b001'
1919
}
2020

21-
$nuget = (gi .\FSharp.Core.Nuget\.nuget\NuGet.exe).FullName
21+
$nuget = (gi .\.nuget\NuGet.exe).FullName
2222

2323
function pack($nuspec){
2424
$dir = [IO.Path]::GetDirectoryName($nuspec)

config.make.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ TARGET = $(TargetFramework)
7272
outsuffix = $(TargetFramework)
7373
endif
7474

75+
ifeq (x-$(TargetFramework)-$(FSharpCoreBackVersion),x-xamarintvos-)
76+
VERSION = 3.98.4.0
77+
TARGET = $(TargetFramework)
78+
outsuffix = $(TargetFramework)
79+
endif
80+
7581
ifeq (x-$(TargetFramework)-$(FSharpCoreBackVersion),x-xamarinmacmobile-)
7682
VERSION = 3.99.4.0
7783
TARGET = $(TargetFramework)
718 KB
Binary file not shown.

0 commit comments

Comments
 (0)