setting version 0.2.1

This commit is contained in:
HoneyryderChuck 2018-10-24 18:23:23 +01:00
parent 760cb9f876
commit 626c77f758
2 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,16 @@
# 0.2.1
* fixed setting timeouts using the chainable API
* Basic Auth: proper user/password escaping
* Improved multi-request support, by allowing to pass request-specific options for multiple requests
```ruby
tokens = ["TOKEN1", "TOKEN2", "TOKEN3"]
uri = "https://example.com/protected"
requests = tokens.map { |token| [uri, {headers: {'authorization': token} }] }
responses = HTTPX.get(*requests)
```

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module HTTPX
VERSION = "0.2.0"
VERSION = "0.2.1"
end