From 22298e3d04293cb81f3d26dea43067cbc7a97dcc Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Fri, 27 Mar 2020 10:51:04 -0400 Subject: [PATCH] v0.3.0-beta.1: Port to tokio 0.2, merge suffixes This release is based on `tokio` 0.2, bringing all the async components into the modern world. We also add some code to fix a common pattern where addresses contain "Main Street #302 #302" because of inconsistently redundant columns. --- Cargo.lock | 2 +- Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51a246b..eff9090 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -296,7 +296,7 @@ dependencies = [ [[package]] name = "geocode-csv" -version = "0.2.1" +version = "0.3.0-beta.1" dependencies = [ "cli_test_dir 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", "common_failures 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 66846e6..68ef401 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geocode-csv" -version = "0.2.1" +version = "0.3.0-beta.1" authors = ["Eric Kidd "] edition = "2018" @@ -10,7 +10,6 @@ readme = "README.md" repository = "https://github.com/faradayio/geocode-csv" documentation = "https://github.com/faradayio/geocode-csv" - [dev-dependencies] cli_test_dir = "0.1.7"