Skip to content

Commit

Permalink
update changelog, readme cleanups, bump to v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasq committed Mar 16, 2021
1 parent 119ecac commit 4710db7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -50,8 +50,8 @@ Options that control the behavior of `microreq` (all other options are passed to
received bytes in a Buffer. The usual toString() encodings can be specified, and
also `'json'` to JSON.parse the response and return the decoded object (or the
utf8 response string if unable to parse).
- `auth` - http Basic auth credentials as either the colon-separated `username:password`
string, or an object `{username: <login>, password: <passwd>}`. The credentials
- `auth` - http Basic auth credentials as either a colon-separated `username:password`
string, or a `{username: <login>, password: <passwd>}` object. The credentials
are used to generate an `Authorization: Basic <base64>` header. Default no auth.
- `maxRedirects` - how many 30x redirects to follow by replaying the request against the
redirected-to location. This is very simplistic, so use advisedly. Default `0`,
Expand All @@ -78,7 +78,7 @@ It is possible to build new callers that inherit defaults from their builder.
Change Log
----------

- **0.13.0** - `followRedirects` option
- **0.13.0** - `maxRedirects` option
- **0.12.0** - `defaults` method, `auth` option
- **0.11.1** - emit timeout errors if noResListen, faster req launch
- **0.11.0** - `timeout` option, depend on qmock
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "microreq",
"version": "0.12.1",
"version": "0.13.0",
"description": "tiny convenience wrapper around http.request",
"main": "index.js",
"license": "Apache-2.0",
Expand Down

0 comments on commit 4710db7

Please sign in to comment.