Skip to content

Commit e70f8c5

Browse files
SchlenkRSchlenkR
SchlenkR
authored and
SchlenkR
committed
Merge branch 'master' of https://github.com/fsprojects/FsHttp
2 parents 8f0f642 + 70e1c73 commit e70f8c5

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
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

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
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+
<div align="center">
2+
<h2>🎁 <strong>Win a PXL-Clock - Watch How on YouTube</strong> 🎁</h2>
3+
<a href="https://youtu.be/q5-QTpEMGdU"><img src="https://img.youtube.com/vi/q5-QTpEMGdU/0.jpg" alt="Watch the PXL-JAM video" style="width: 60%;"></a>
4+
<p>YouTube</p>
5+
</div>
26

3-
<img align="right" width="200" alt='logo' src='https://raw.githubusercontent.com/fsprojects/FsHttp/master/docs/img/logo_big.png' />
7+
The PXL PAM 2024 is a fun and engaging way to come together and have a joyful time!
8+
Watch the video or check out our [PXL-JAM repo](https://github.com/CuminAndPotato/PXL-JAM/)!
49

5-
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**.
10+
---
11+
12+
# 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)
13+
14+
<img align="right" width="200" alt='logo' src='https://raw.githubusercontent.com/schlenkr/FsHttp/master/docs/img/logo_big.png' />
15+
16+
FsHttp 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**.
617

718
* Use it as a replacement for `.http` files, *VSCode's REST client*, *Postman*, and other tools as an **interactive and programmable playground** for HTTP requests.
819
* Usable as a **production-ready HTTP client** for applications powered by .NET (C#, VB, F#).
920

1021
👍 Postman? ❤️ FsHttp! https://youtu.be/F508wQu7ET0
1122

12-
Developed and maintained by [@SchlenkR](https://github.com/schlenkr) and [@dawedawe](https://github.com/dawedawe). Feel free to leave us a message.
13-
1423
## Documentation
1524

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

1928
### F# syntax example
2029

@@ -59,7 +68,7 @@ await Http
5968
### Release Notes / Migrating to new versions
6069

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

6473
## Building
6574

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

+4-3
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" />
38+
<PackageReference Include="FsUnit" Version="6.0.1" />
39+
<PackageReference Include="NUnit" Version="4.0.1" />
40+
<PackageReference Include="FSharp.SystemTextJson" Version="1.3.13" />
3941
<PackageReference Include="FsUnit" Version="5.6.1" />
40-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
41-
<PackageReference Include="NUnit" Version="3.14.0" />
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)