Skip to content

Commit 6cda345

Browse files
committed
Merge pull request #23 from dsyme/async-enum
Move to AsyncSeq = IAsyncEnumerable to fix #15
2 parents e1a5d78 + b0c28d3 commit 6cda345

7 files changed

Lines changed: 1452 additions & 544 deletions

File tree

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
### 1.16.0 - 13.05.2015
22
* Simplify ofObservableBuffered and toBlockingSeq
3+
* Move to IAsyncEnumerable model to support try/finally and try/with
4+
* Rename replicate to replicateInfinite
5+
* Rename toList to toListAsync
6+
* Rename toArray to toArrayAsync
7+
* Rename zipWithIndexAsync to mapiAsync
8+
* Add init, initInfinite, initAsync, initInfiniteAsync, replicateInfinite
39

410
### 1.15.0 - 30.03.2015
511
* Add AsyncSeq.getIterator (unblocks use of AsyncSeq in FSharpx.Async)

paket.dependencies

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ nuget NUnit
55
nuget NUnit.Runners
66
nuget FAKE
77
nuget SourceLink.Fake
8+
nuget FSharp.Control.AsyncSeq 1.15.0
89

910
github fsharp/FAKE modules/Octokit/Octokit.fsx

paket.lock

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
NUGET
22
remote: https://nuget.org/api/v2
33
specs:
4-
FAKE (3.26.1)
5-
FSharp.Compiler.Service (0.0.86)
6-
FSharp.Formatting (2.7.5)
7-
FSharp.Compiler.Service (>= 0.0.82)
8-
FSharpVSPowerTools.Core (>= 1.7.0)
9-
FSharpVSPowerTools.Core (1.7.0)
10-
FSharp.Compiler.Service (>= 0.0.81)
4+
FAKE (3.31.4)
5+
FSharp.Compiler.Service (0.0.89)
6+
FSharp.Control.AsyncSeq (1.15.0)
7+
FSharp.Formatting (2.9.6)
8+
FSharp.Compiler.Service (>= 0.0.87)
9+
FSharpVSPowerTools.Core (1.8.0)
10+
FSharpVSPowerTools.Core (1.8.0)
11+
FSharp.Compiler.Service (>= 0.0.87)
1112
Microsoft.Bcl (1.1.10)
1213
Microsoft.Bcl.Build (>= 1.0.14)
1314
Microsoft.Bcl.Build (1.0.21)
@@ -16,11 +17,11 @@ NUGET
1617
Microsoft.Bcl.Build (>= 1.0.14)
1718
NUnit (2.6.4)
1819
NUnit.Runners (2.6.4)
19-
Octokit (0.8.0)
20+
Octokit (0.11.0)
2021
Microsoft.Net.Http
2122
SourceLink.Fake (0.5.0)
2223
GITHUB
2324
remote: fsharp/FAKE
2425
specs:
25-
modules/Octokit/Octokit.fsx (60e49f7c915a8134a5f07ca408249e4bd7cc4a63)
26+
modules/Octokit/Octokit.fsx (ac46f8ba9cc11bb6e8d02197720697c9e258c0d3)
2627
Octokit

src/FSharp.Control.AsyncSeq/AssemblyInfo.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ open System.Reflection
44
[<assembly: AssemblyTitleAttribute("FSharp.Control.AsyncSeq")>]
55
[<assembly: AssemblyProductAttribute("FSharp.Control.AsyncSeq")>]
66
[<assembly: AssemblyDescriptionAttribute("Asynchronous sequences for F#")>]
7-
[<assembly: AssemblyVersionAttribute("1.15.0")>]
8-
[<assembly: AssemblyFileVersionAttribute("1.15.0")>]
7+
[<assembly: AssemblyVersionAttribute("1.16.0")>]
8+
[<assembly: AssemblyFileVersionAttribute("1.16.0")>]
99
do ()
1010

1111
module internal AssemblyVersionInformation =
12-
let [<Literal>] Version = "1.15.0"
12+
let [<Literal>] Version = "1.16.0"

0 commit comments

Comments
 (0)