prima_bridge 0.3.0

A library to implement the bridge pattern
Documentation
# Changelog

### 0.3.0
#####features
- adds support for raw body response ([PR #21]https://github.com/primait/bridge.rs/pull/21)

#####breaking change
- removed the bridge.request api (deprecated) in favor of `Request::get` or `RestRequest::new` and `GraphQLRequest::new` functions.

### 0.2.4
#####bugfix
- fixes the test suite. No impact on the api.

### 0.2.3
#####bugfix
- double content-type header for graphql request

### 0.2.2
#####bugfix
- better handling of headers

### 0.2.1
#####features
- adds back the `with_query_pair` and `with_query_pairs` api

### 0.2.0
#####features
- adds the ability to use a binary as the body of a request. The api has changed:

**before**
```rust
let body: Option<String> = None;
bridge.request(RequestType::rest(body, Method::GET)).send();
```

**now**

```rust
RestRequest::new(&bridge).send();
// OR
Request::rest(&bridge).send()
```

The old API is still available but deprecated. It will be removed soon.