Skip to content

Commit 1b65801

Browse files
committed
Rename project
1 parent 0e1661b commit 1b65801

35 files changed

Lines changed: 51 additions & 51 deletions

FSharpx.Async.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B
1010
EndProject
1111
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{A6A6AF7D-D6E3-442D-9B1E-58CC91879BE1}"
1212
EndProject
13-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharpx.Async", "src\FSharpx.Async\FSharpx.Async.fsproj", "{2D4F3D0E-0E18-48D7-9C27-98864039393D}"
13+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "AsyncSeq", "src\AsyncSeq\AsyncSeq.fsproj", "{2D4F3D0E-0E18-48D7-9C27-98864039393D}"
1414
EndProject
1515
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60BC93-E09B-4E5F-9D85-95A519479D54}"
1616
ProjectSection(SolutionItems) = preProject
@@ -34,7 +34,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "content", "content", "{8E6D
3434
EndProject
3535
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{ED8079DD-2B06-4030-9F0F-DC548F98E1C4}"
3636
EndProject
37-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharpx.Async.Tests", "tests\FSharpx.Async.Tests\FSharpx.Async.Tests.fsproj", "{ADBD32DB-B7AC-4E81-9507-28F329AF23E7}"
37+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "AsyncSeq.Tests", "tests\AsyncSeq.Tests\AsyncSeq.Tests.fsproj", "{ADBD32DB-B7AC-4E81-9507-28F329AF23E7}"
3838
EndProject
3939
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "library", "library", "{B4BB88FA-DB8C-4651-9869-A8FEA79F044E}"
4040
ProjectSection(SolutionItems) = preProject

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
[![Issue Stats](http://issuestats.com/github/fsprojects/FSharpx.Async/badge/issue)](http://issuestats.com/github/fsprojects/FSharpx.Async)
2-
[![Issue Stats](http://issuestats.com/github/fsprojects/FSharpx.Async/badge/pr)](http://issuestats.com/github/fsprojects/FSharpx.Async)
1+
[![Issue Stats](http://issuestats.com/github/fsprojects/AsyncSeq/badge/issue)](http://issuestats.com/github/fsprojects/AsyncSeq)
2+
[![Issue Stats](http://issuestats.com/github/fsprojects/AsyncSeq/badge/pr)](http://issuestats.com/github/fsprojects/AsyncSeq)
33
[![Build status](https://ci.appveyor.com/api/projects/status/jv6nki3vm2s6bmj6?svg=true)](https://ci.appveyor.com/project/SteffenForkmann/fsharpx-async)
4-
[![Build status](https://travis-ci.org/fsprojects/FSharpx.Async.svg?branch=master)](https://travis-ci.org/fsprojects/FSharpx.Async)
4+
[![Build status](https://travis-ci.org/fsprojects/AsyncSeq.svg?branch=master)](https://travis-ci.org/fsprojects/AsyncSeq)
55

6-
# FSharpx.Async [![NuGet Status](http://img.shields.io/nuget/v/FSharpx.Async.svg?style=flat)](https://www.nuget.org/packages/FSharpx.Async/)
6+
# AsyncSeq [![NuGet Status](http://img.shields.io/nuget/v/AsyncSeq.svg?style=flat)](https://www.nuget.org/packages/AsyncSeq/)
77

8-
**FSharpx.Async** is a collection of asynchronous programming utilities for F#.
8+
**AsyncSeq** is a collection of asynchronous programming utilities for F#.
99

10-
See [the home page](http://fsprojects.github.io/FSharpx.Async/) for details. The home page can be [edited, forked or cloned](https://github.com/fsprojects/FSharpx.Async/tree/gh-pages)
10+
See [the home page](http://fsprojects.github.io/AsyncSeq/) for details. The home page can be [edited, forked or cloned](https://github.com/fsprojects/AsyncSeq/tree/gh-pages)
1111
Please contribute to this project. Don't ask for permission, just fork the repository and send pull requests.
1212

1313
Please also join the [F# Open Source Group](http://fsharp.github.com)

RELEASE_NOTES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### 1.11.1 - 26.03.2015
2-
* BUGFIX: AsyncSeq.toBlockingSeq does not hung forever if an exception is thrown and reraise it outside - https://github.com/fsprojects/FSharpx.Async/pull/21
2+
* BUGFIX: AsyncSeq.toBlockingSeq does not hung forever if an exception is thrown and reraise it outside - https://github.com/fsprojects/AsyncSeq/pull/21
33
* Added Async.bindChoice, Async.ParallelIgnore, AsyncSeq.zipWithAsync, AsyncSeq.zappAsync, AsyncSeq.threadStateAsync, AsyncSeq.merge, AsyncSeq.traverseOptionAsync, AsyncSeq.traverseChoiceAsync
44

55
### 1.11.0 - 27.02.2015
@@ -10,8 +10,8 @@
1010
* Use Paket instead of NuGet
1111

1212
### 1.9.9 - 23.02.2015
13-
* BUGFIX: AsyncSeq.skipWhile skips an extra item - https://github.com/fsprojects/FSharpx.Async/pull/2
13+
* BUGFIX: AsyncSeq.skipWhile skips an extra item - https://github.com/fsprojects/AsyncSeq/pull/2
1414

1515
### 1.9.9 - 23.02.2015
1616
* Copied the async helpers from FSharpx
17-
* BUGFIX: AsyncSeq.skipWhile skips an extra item - https://github.com/fsprojects/FSharpx.Async/pull/2
17+
* BUGFIX: AsyncSeq.skipWhile skips an extra item - https://github.com/fsprojects/AsyncSeq/pull/2

build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ open SourceLink
2828

2929
// The name of the project
3030
// (used by attributes in AssemblyInfo, name of a NuGet package and directory in 'src')
31-
let project = "FSharpx.Async"
31+
let project = "AsyncSeq"
3232

3333
// Short summary of the project
3434
// (used as description in AssemblyInfo and as a short summary for NuGet package)
@@ -45,7 +45,7 @@ let authors = [ "Thomas Petricek"; "David Thomas"; "Ryan Riley"; "Steffen Forkma
4545
let tags = "F#, async, fsharpx"
4646

4747
// File system information
48-
let solutionFile = "FSharpx.Async.sln"
48+
let solutionFile = "AsyncSeq.sln"
4949

5050
// Pattern specifying assemblies to be tested using NUnit
5151
let testAssemblies = "tests/**/bin/Release/*Tests*.dll"
@@ -56,7 +56,7 @@ let gitOwner = "fsprojects"
5656
let gitHome = "https://github.com/" + gitOwner
5757

5858
// The name of the project on GitHub
59-
let gitName = "FSharpx.Async"
59+
let gitName = "AsyncSeq"
6060

6161
// The url for the raw files hosted
6262
let gitRaw = environVarOrDefault "gitRaw" "https://raw.github.com/fsprojects"

docs/content/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
FSharpx.Async
1+
AsyncSeq
22
=============
33

4-
FSharpx.Async is a collection of asynchronous programming utilities for F#.
4+
AsyncSeq is a collection of asynchronous programming utilities for F#.
55

66
<div class="row">
77
<div class="span1"></div>
88
<div class="span6">
99
<div class="well well-small" id="nuget">
10-
The FSharpx.Async library can be <a href="https://nuget.org/packages/FSharpx.Async">installed from NuGet</a>:
11-
<pre>PM> Install-Package FSharpx.Async</pre>
10+
The AsyncSeq library can be <a href="https://nuget.org/packages/AsyncSeq">installed from NuGet</a>:
11+
<pre>PM> Install-Package AsyncSeq</pre>
1212
</div>
1313
</div>
1414
<div class="span1"></div>
@@ -36,8 +36,8 @@ The library is available under Apache 2.0 license, which allows modification and
3636
redistribution for both commercial and non-commercial purposes. For more information see the
3737
[License file][license] in the GitHub repository.
3838

39-
[content]: https://github.com/fsprojects/FSharpx.Async/tree/master/docs/content
40-
[gh]: https://github.com/fsprojects/FSharpx.Async
41-
[issues]: https://github.com/fsprojects/FSharpx.Async/issues
42-
[readme]: https://github.com/fsprojects/FSharpx.Async/blob/master/README.md
43-
[license]: https://github.com/fsprojects/FSharpx.Async/blob/master/LICENSE.txt
39+
[content]: https://github.com/fsprojects/AsyncSeq/tree/master/docs/content
40+
[gh]: https://github.com/fsprojects/AsyncSeq
41+
[issues]: https://github.com/fsprojects/AsyncSeq/issues
42+
[readme]: https://github.com/fsprojects/AsyncSeq/blob/master/README.md
43+
[license]: https://github.com/fsprojects/AsyncSeq/blob/master/LICENSE.txt

docs/content/library/AsyncSeq.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ latter push-based. Analogs for most operations defined for `Seq`, `List` and `IO
1010
`AsyncSeq`. The power of `AsyncSeq` lies in that many of these operations also have analogs based on `Async`
1111
allowing composition of complex asynchronous workflows.
1212
13-
The `AsyncSeq` type is located in the `FSharpx.Async.dll` assembly which can be loaded in F# Interactive as follows:
13+
The `AsyncSeq` type is located in the `AsyncSeq.dll` assembly which can be loaded in F# Interactive as follows:
1414
*)
1515

16-
#r "../../../bin/FSharpx.Async.dll"
16+
#r "../../../bin/AsyncSeq.dll"
1717
open FSharpx.Control
1818

1919

docs/tools/generate.fsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
// --------------------------------------------------------------------------------------
55

66
// Binaries that have XML documentation (in a corresponding generated XML file)
7-
let referenceBinaries = [ "FSharpx.Async.dll" ]
7+
let referenceBinaries = [ "AsyncSeq.dll" ]
88
// Web site location for the generated documentation
9-
let website = "/FSharpx.Async"
9+
let website = "/AsyncSeq"
1010

11-
let githubLink = "http://github.com/fsprojects/FSharpx.Async"
11+
let githubLink = "http://github.com/fsprojects/AsyncSeq"
1212

1313
// Specify more information about your project
1414
let info =
15-
[ "project-name", "FSharpx.Async"
15+
[ "project-name", "AsyncSeq"
1616
"project-author", "Thomas Petricek, David Thomas, Steffen Forkmann"
1717
"project-summary", "Async extensions for F#"
1818
"project-github", githubLink
19-
"project-nuget", "http://nuget.org/packages/FSharpx.Async" ]
19+
"project-nuget", "http://nuget.org/packages/AsyncSeq" ]
2020

2121
// --------------------------------------------------------------------------------------
2222
// For typical project, no changes are needed below
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
namespace System
1+
namespace System
22
open System.Reflection
33

4-
[<assembly: AssemblyTitleAttribute("FSharpx.Async")>]
5-
[<assembly: AssemblyProductAttribute("FSharpx.Async")>]
4+
[<assembly: AssemblyTitleAttribute("AsyncSeq")>]
5+
[<assembly: AssemblyProductAttribute("AsyncSeq")>]
66
[<assembly: AssemblyDescriptionAttribute("Async extensions for F#")>]
77
[<assembly: AssemblyVersionAttribute("1.11.1")>]
88
[<assembly: AssemblyFileVersionAttribute("1.11.1")>]

0 commit comments

Comments
 (0)