mark changelog as ready

This commit is contained in:
Benjamin Fry 2017-08-01 18:50:59 -07:00
parent 0f6a07711f
commit 0b6ef21eb3
3 changed files with 2 additions and 8 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.11.0 (Unreleased)
## 0.11.0
### Added

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.3.0 (Unreleased)
## 0.3.0
### Added

View File

@ -73,9 +73,6 @@ pub struct InnerLookupIpFuture<C: ClientHandle + 'static> {
impl<C: ClientHandle + 'static> InnerLookupIpFuture<C> {
pub(crate) fn lookup(mut names: Vec<Name>, strategy: LookupIpStrategy, client: &mut C) -> Self {
// FIXME: remove
println!("looking_up: {:?}", names);
let name = names.pop().expect("can not lookup IPs for no names");
let query = LookupIpState::lookup(name, strategy, client);
@ -164,9 +161,6 @@ impl LookupIpState {
strategy: LookupIpStrategy,
client: &mut C,
) -> Self {
// FIXME: remove
println!("running new lookup: {}", name);
let query_future = lookup(name, strategy, client);
LookupIpState::Query(query_future)