Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add trurl / libcurl compatibilty to readme. link to URL quirks #320

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,19 @@ if someone wanted to.

trurl builds with libcurl older than 7.81.0 but will then not work as
good. For all the documented goodness, use a more modern libcurl.

### trurl / libcurl Compatibility

| trurl Feature | Minimum libcurl Version |
|---------------|----------------------|
| imap-options | 7.30.0 |
| normalize-ipv | 7.77.0 |
| white-space | 7.78.0 |
| url-strerror | 7.80.0 |
| zone-id | 7.81.0 |
| punycode | 7.88.0 |
| punycode2idn | 8.3.0 |
jacobmealey marked this conversation as resolved.
Show resolved Hide resolved

For more details on how trurl will behave if these features are missing see [URL Quirks](https://github.com/curl/trurl/blob/master/URL-QUIRKS.md).
To see the features your version of trurl supports as well as the version of libcurl it is built with, run the following command: `trurl --version`

2 changes: 1 addition & 1 deletion URL-QUIRKS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# URL Quirks

This is a collection peculiarities to may find in trurl due to bugs or
This is a collection peculiarities you may find in trurl due to bugs or
jacobmealey marked this conversation as resolved.
Show resolved Hide resolved
changes/improvements in libcurl's URL handling.

## The URL API
Expand Down