Skip to content

Commit

Permalink
repoint repo
Browse files Browse the repository at this point in the history
  • Loading branch information
SchlenkR committed Dec 28, 2023
1 parent 4e9378e commit fb43302
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/SchlenkR/FsHttp</RepositoryUrl>
<RepositoryUrl>https://github.com/fsprojects/FsHttp</RepositoryUrl>

<FsDocsLicenseLink>https://github.com/SchlenkR/FsHttp/blob/master/LICENSE</FsDocsLicenseLink>
<FsDocsLicenseLink>https://github.com/fsprojects/FsHttp/blob/master/LICENSE</FsDocsLicenseLink>
<FsDocsReleaseNotesLink>https://www.nuget.org/packages/FsHttp#release-body-tab</FsDocsReleaseNotesLink>

<PackageReleaseNotes>
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src='https://raw.githubusercontent.com/schlenkr/FsHttp/master/docs/img/logo.png' alt='logo' width='300' />
<img src='https://raw.githubusercontent.com/fsprojects/FsHttp/master/docs/img/logo.png' alt='logo' width='300' />
</p>

FsHttp is a .Net HTTP client library for C# and F#. It aims for describing and executing HTTP requests in convenient ways that can be used in production and interactive environments.
Expand All @@ -10,7 +10,7 @@ The design principle behind FsHttp is:
**FsHttp** is developed and maintained by [@SchlenkR](https://github.com/schlenkr) and [@dawedawe](https://github.com/dawedawe). Feel free to leave us a message.

[![NuGet Badge](http://img.shields.io/nuget/v/FsHttp.svg?style=flat)](https://www.nuget.org/packages/FsHttp) ![build status](https://github.com/SchlenkR/FsHttp/actions/workflows/push-master_pull-request.yml/badge.svg?event=push)
[![NuGet Badge](http://img.shields.io/nuget/v/FsHttp.svg?style=flat)](https://www.nuget.org/packages/FsHttp) ![build status](https://github.com/fsprojects/FsHttp/actions/workflows/push-master_pull-request.yml/badge.svg?event=push)


A Simple Example
Expand Down Expand Up @@ -60,8 +60,8 @@ await "https://reqres.in/api/users"
Documentation
-------------

* 📖 Please see [FsHttp Documentation](https://schlenkr.github.io/FsHttp) site for a detailed documentation.
* 🧪 In addition, have a look at the [Integration Tests](https://github.com/SchlenkR/FsHttp/tree/master/src/Tests) that show various library details.
* 📖 Please see [FsHttp Documentation](https://fsprojects.github.io/FsHttp) site for a detailed documentation.
* 🧪 In addition, have a look at the [Integration Tests](https://github.com/fsprojects/FsHttp/tree/master/src/Tests) that show various library details.


Release Notes / Migrating to new versions
Expand All @@ -74,7 +74,7 @@ Release Notes / Migrating to new versions
GitHub
-------------

Please see [FsHttp on GitHub](https://github.com/SchlenkR/FsHttp).
Please see [FsHttp on GitHub](https://github.com/fsprojects/FsHttp).


Building
Expand Down
2 changes: 1 addition & 1 deletion docs/Builders_and_Evaluation.fsx.bak
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ let pageAsync =
}


// TODO Document naming conventions according to: https://github.com/SchlenkR/FsHttp/issues/48
// TODO Document naming conventions according to: https://github.com/fsprojects/FsHttp/issues/48

(**
## Naming Conventions
Expand Down
2 changes: 1 addition & 1 deletion docs/Release_Notes.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ index: 10
* `httpAsync` -> `http { ... } |> Request.sendAsync`
* `httpLazyAsync` -> `http { ... } |> Request.toAsync`
* `httpMessage` -> `http { ... } |> Request.toMessage`
* see also: [https://github.com/SchlenkR/FsHttp/blob/master/src/Tests/BuildersAndSignatures.fs](Tests in BuildersAndSignatures.fs)
* see also: [https://github.com/fsprojects/FsHttp/blob/master/src/Tests/BuildersAndSignatures.fs](Tests in BuildersAndSignatures.fs)
* Renamed type `LazyHttpBuilder` -> `HttpBuilder`
* Renamed `Request.buildAsync` -> `Request.toAsync`
* Removed `send` and `sendAsync` builder methods
Expand Down
2 changes: 1 addition & 1 deletion docs/Requesting_Multipart_Files.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ http {
(**
## Further Readings
> Have a look at the [https://github.com/SchlenkR/FsHttp/blob/master/src/Tests/Multipart.fs](multipart tests) for more examples using multipart.
> Have a look at the [https://github.com/fsprojects/FsHttp/blob/master/src/Tests/Multipart.fs](multipart tests) for more examples using multipart.
*)
2 changes: 1 addition & 1 deletion docs/Sending_Requests.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ http {


(**
See also: https://github.com/SchlenkR/FsHttp/issues/105
See also: https://github.com/fsprojects/FsHttp/issues/105
Instead of binding a cancellation token directly to a request definition (like in the example above),
it is also possible to pass it on execution-timer, like so:
Expand Down
2 changes: 1 addition & 1 deletion docu.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dotnet fsdocs `
--clean `
--sourcefolder ./src `
--properties Configuration=Release TargetFramework=net8.0 `
--sourcerepo https://github.com/SchlenkR/FsHttp/blob/master/src `
--sourcerepo https://github.com/fsprojects/FsHttp/blob/master/src `
--parameters root /FsHttp/ `
--strict `
--output ./.docsOutput

0 comments on commit fb43302

Please sign in to comment.