Remove unused future, fix changelog

This commit is contained in:
Benjamin Fry 2018-05-17 22:18:39 -07:00
parent 860ed6788b
commit f4981dfa84
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.14.0 (unreleased)
## 0.14.0
### Changed

View File

@ -14,8 +14,6 @@
use std::sync::Arc;
#[cfg(feature = "dnssec")]
use futures::future;
use futures::Future;
use tokio::runtime::current_thread::Runtime;
@ -490,6 +488,8 @@ where
) -> ClientResult<
Box<Future<Item = SecureClientHandle<BasicClientHandle>, Error = ClientError> + Send>,
> {
use futures::future;
let (stream, stream_handle) = self.conn.new_stream()?;
let client = ClientFuture::new(stream, stream_handle, self.signer.clone());