diff --git a/README.md b/README.md index fe48e0a..1e9487c 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Arguments: - `encodeQueryParams` - parameters for `encodeQuery` function that encodes query params. [More](https://nim-lang.org/docs/uri.html#encodeQuery%2CopenArray%5B%5D%2Cchar) - `body` - request body as a string. Example: `"{\"key\": \"value\"}\"`. Is not available for `get`, `head` and `options` procedures - `auth` - login and password for basic authorization. Example: `("login", "password")` -- `timeout` - stop waiting for a response after a given number of milliseconds +- `timeout` - stop waiting for a response after a given number of milliseconds. `-1` for no timeout, which is default value - `ignoreSsl` - no certificate verification if `true` ## General procedure diff --git a/yahttp.nimble b/yahttp.nimble index 5bdbe89..ae0e2b7 100644 --- a/yahttp.nimble +++ b/yahttp.nimble @@ -1,6 +1,6 @@ # Package -version = "0.5.1" +version = "0.6.0" author = "Denis Mishankov" description = "Awesome simple HTTP client" license = "MIT"