Skip to content

Commit b5d9b4f

Browse files
authored
Merge branch 'master' into dependabot/nuget/FsUnit-6.0.1
2 parents dbab6c4 + 57f9eb0 commit b5d9b4f

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"fsdocs-tool": {
6-
"version": "20.0.0",
6+
"version": "20.0.1",
77
"commands": [
88
"fsdocs"
99
]

.github/workflows/dependabot-auto-approve.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Dependabot metadata
1313
id: metadata
14-
uses: dependabot/fetch-metadata@v1
14+
uses: dependabot/fetch-metadata@v2
1515
with:
1616
github-token: '${{ secrets.GITHUB_TOKEN }}'
1717
- name: Approve a PR

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# FsHttp [![Build & Tests](https://github.com/fsprojects/FsHttp/actions/workflows/build-and-test.yml/badge.svg?branch=master)](https://github.com/fsprojects/FsHttp/actions/workflows/build-and-test.yml) [![NuGet Badge](https://buildstats.info/nuget/FsHttp)](https://www.nuget.org/packages/FsHttp)
1+
# FsHttp [![Build & Tests](https://github.com/schlenkr/FsHttp/actions/workflows/build-and-test.yml/badge.svg?branch=master)](https://github.com/schlenkr/FsHttp/actions/workflows/build-and-test.yml) [![NuGet Badge](https://buildstats.info/nuget/FsHttp)](https://www.nuget.org/packages/FsHttp)
22

3-
<img align="right" width="200" alt='logo' src='https://raw.githubusercontent.com/fsprojects/FsHttp/master/docs/img/logo_big.png' />
3+
<img align="right" width="200" alt='logo' src='https://raw.githubusercontent.com/schlenkr/FsHttp/master/docs/img/logo_big.png' />
44

55
FsHttp ("Full Stack HTTP") is a "hackable HTTP client" that offers a legible style for the basics while still affording full access to the underlying HTTP representations for covering unusual cases. It's the best of both worlds: **Convenience and Flexibility**.
66

@@ -11,8 +11,8 @@ FsHttp ("Full Stack HTTP") is a "hackable HTTP client" that offers a legible sty
1111

1212
## Documentation
1313

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

1717
### F# syntax example
1818

@@ -57,7 +57,7 @@ await Http
5757
### Release Notes / Migrating to new versions
5858

5959
* See https://www.nuget.org/packages/FsHttp#release-body-tab
60-
* For different upgrade paths, please read the [Migrations docs section](https://fsprojects.github.io/FsHttp/Release_Notes.html).
60+
* For different upgrade paths, please read the [Migrations docs section](https://schlenkr.github.io/FsHttp/Release_Notes.html).
6161

6262
## Building
6363

src/Test.CSharp/Test.CSharp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
9+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

src/Tests/Tests.fsproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@
3535
<Compile Include="Misc.fs" />
3636
</ItemGroup>
3737
<ItemGroup>
38-
<PackageReference Include="FSharp.SystemTextJson" Version="1.2.42" />
3938
<PackageReference Include="FsUnit" Version="6.0.1" />
40-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
4139
<PackageReference Include="NUnit" Version="4.0.1" />
40+
<PackageReference Include="FSharp.SystemTextJson" Version="1.3.13" />
41+
<PackageReference Include="FsUnit" Version="5.6.1" />
42+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
4243
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
4344
<PackageReference Include="Suave" Version="2.6.2" />
4445
</ItemGroup>

0 commit comments

Comments
 (0)