2018-12-09 19:14:08 +01:00
|
|
|
# Changes
|
|
|
|
|
2019-03-02 23:22:03 +01:00
|
|
|
## [0.3.0] - 2019-03-02
|
2019-02-22 21:44:37 +01:00
|
|
|
|
2019-02-23 03:20:54 +01:00
|
|
|
## Added
|
|
|
|
|
|
|
|
* Added boxed NewService and Service.
|
|
|
|
|
2019-02-22 21:44:37 +01:00
|
|
|
## Changed
|
|
|
|
|
2019-03-02 23:22:03 +01:00
|
|
|
* Added `Config` parameter to `NewService` trait.
|
|
|
|
|
|
|
|
* Added `Config` parameter to `NewTransform` trait.
|
2019-02-22 21:44:37 +01:00
|
|
|
|
|
|
|
|
2019-02-19 20:31:54 +01:00
|
|
|
## [0.2.2] - 2019-02-19
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
* Added `NewService` impl for `Rc<S> where S: NewService`
|
|
|
|
|
|
|
|
* Added `NewService` impl for `Arc<S> where S: NewService`
|
|
|
|
|
|
|
|
|
2019-02-03 22:32:51 +01:00
|
|
|
## [0.2.1] - 2019-02-03
|
2019-02-03 19:42:27 +01:00
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
* Generalize `.apply` combinator with Transform trait
|
|
|
|
|
|
|
|
|
2019-02-02 04:53:13 +01:00
|
|
|
## [0.2.0] - 2019-02-01
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
* Use associated type instead of generic for Service definition.
|
|
|
|
|
|
|
|
* Before:
|
|
|
|
|
|
|
|
```rust
|
|
|
|
impl Service<Request> for Client {
|
|
|
|
type Response = Response;
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
* After:
|
|
|
|
|
|
|
|
```rust
|
|
|
|
impl Service for Client {
|
|
|
|
type Request = Request;
|
|
|
|
type Response = Response;
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2019-01-25 05:42:30 +01:00
|
|
|
## [0.1.6] - 2019-01-24
|
2019-01-16 04:25:49 +01:00
|
|
|
|
2019-01-17 00:33:33 +01:00
|
|
|
### Changed
|
|
|
|
|
|
|
|
* Use `FnMut` instead of `Fn` for .apply() and .map() combinators and `FnService` type
|
2019-01-16 04:25:49 +01:00
|
|
|
|
2019-01-25 04:19:44 +01:00
|
|
|
* Change `.apply()` error semantic, new service's error is `From<Self::Error>`
|
|
|
|
|
|
|
|
|
2019-01-14 07:58:23 +01:00
|
|
|
## [0.1.5] - 2019-01-13
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
* Make `Out::Error` convertable from `T::Error` for apply combinator
|
|
|
|
|
|
|
|
|
2019-01-12 06:39:58 +01:00
|
|
|
## [0.1.4] - 2019-01-11
|
|
|
|
|
2019-01-12 06:42:13 +01:00
|
|
|
### Changed
|
2019-01-12 06:39:58 +01:00
|
|
|
|
|
|
|
* Use `FnMut` instead of `Fn` for `FnService`
|
|
|
|
|
|
|
|
|
2018-12-13 03:32:19 +01:00
|
|
|
## [0.1.3] - 2018-12-12
|
|
|
|
|
2019-01-12 06:42:13 +01:00
|
|
|
### Changed
|
2018-12-13 03:32:19 +01:00
|
|
|
|
|
|
|
* Split service combinators to separate trait
|
|
|
|
|
|
|
|
|
2018-12-13 03:00:35 +01:00
|
|
|
## [0.1.2] - 2018-12-12
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
* Release future early for `.and_then()` and `.then()` combinators
|
|
|
|
|
|
|
|
|
2018-12-09 19:14:08 +01:00
|
|
|
## [0.1.1] - 2018-12-09
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
* Added Service impl for Box<S: Service>
|
|
|
|
|
|
|
|
|
|
|
|
## [0.1.0] - 2018-12-09
|
|
|
|
|
|
|
|
* Initial import
|