Skip to content

Commit 9ff25c2

Browse files
committed
Merge from 'upstream/master'
Resolve conflict in Return removal
2 parents 784f3eb + 275a944 commit 9ff25c2

13 files changed

Lines changed: 1211 additions & 822 deletions

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# All files
2+
[*]
3+
end_of_line = crlf
4+
indent_style = space
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
# Project files
8+
[*.{csproj,fsproj}]
9+
indent_size = 2
10+
# Code files
11+
[*.{cs,csx,fs,fsx,vb,vbx,xml}]
12+
indent_size = 4
13+
charset = utf-8-bom

.paket/Paket.Restore.targets

Lines changed: 255 additions & 60 deletions
Large diffs are not rendered by default.

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ matrix:
66
dist: trusty
77
sudo: false
88
mono: latest
9-
dotnet: 2.1.300
9+
dotnet: 3.0
1010
- os: osx # OSX 10.12
1111
osx_image: xcode9.1
12-
dotnet: 2.1.300
12+
dotnet: 3.0.100
1313
mono: latest
1414
sudo: false
1515

@@ -23,4 +23,4 @@ script:
2323

2424
branches:
2525
except:
26-
- gh-pages
26+
- gh-pages

FSharp.Control.AsyncSeq.sln

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 15
3-
VisualStudioVersion = 15.0.27004.2006
2+
# Visual Studio Version 16
3+
VisualStudioVersion = 16.0.29924.181
44
MinimumVisualStudioVersion = 15.0.26124.0
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B98-5CED-492C-A5B7-A5B4F73CF142}"
66
ProjectSection(SolutionItems) = preProject
@@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B
1010
EndProject
1111
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60BC93-E09B-4E5F-9D85-95A519479D54}"
1212
ProjectSection(SolutionItems) = preProject
13+
.editorconfig = .editorconfig
1314
.gitignore = .gitignore
1415
.travis.yml = .travis.yml
1516
appveyor.yml = appveyor.yml

RELEASE_NOTES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 2.0.23 - 29.01.2019
2+
* Adding .NET IAsyncEnumerable conversion functions (ofAsyncEnum and toAsyncEnum) [#96](https://github.com/fsprojects/FSharp.Control.AsyncSeq/pull/96)
3+
14
### 2.0.22 - 29.09.2019
25
* Rename toList and toArray to toListSynchronously and toArraySynchronously
36
* Add ofSeqAsync and concat

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
environment:
2-
CLI_VERSION: 2.0.0
3-
image: Visual Studio 2017
2+
CLI_VERSION: 3.0.100
3+
image: Visual Studio 2019
44
init:
55
- git config --global core.autocrlf input
66
build_script:

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "2.1.300"
3+
"version": "3.0.100"
44
}
55
}

src/FSharp.Control.AsyncSeq/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("FSharp.Control.AsyncSeq")>]
66
[<assembly: AssemblyProductAttribute("src/FSharp.Control.AsyncSeq")>]
77
[<assembly: AssemblyDescriptionAttribute("Asynchronous sequences for F#")>]
8-
[<assembly: AssemblyVersionAttribute("2.0.22")>]
9-
[<assembly: AssemblyFileVersionAttribute("2.0.22")>]
8+
[<assembly: AssemblyVersionAttribute("2.0.23")>]
9+
[<assembly: AssemblyFileVersionAttribute("2.0.23")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FSharp.Control.AsyncSeq"
1414
let [<Literal>] AssemblyProduct = "src/FSharp.Control.AsyncSeq"
1515
let [<Literal>] AssemblyDescription = "Asynchronous sequences for F#"
16-
let [<Literal>] AssemblyVersion = "2.0.22"
17-
let [<Literal>] AssemblyFileVersion = "2.0.22"
16+
let [<Literal>] AssemblyVersion = "2.0.23"
17+
let [<Literal>] AssemblyFileVersion = "2.0.23"

0 commit comments

Comments
 (0)