From 12a7f2d11e200c39179d1bfc13f394073489a8c3 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Mon, 18 Nov 2019 06:31:50 -0500 Subject: [PATCH] v0.2.0-alpha.1: Optionally remove existing geocode columns If the geocoder would introduce columns that already exist in the file, we do one of two things: 1. By default, we exit with an error. 2. If the user passes `--replace`, we strip any column with the same name as a geocoding output column, and add the output columns normally. --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b496d93..bcacc50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -359,7 +359,7 @@ dependencies = [ [[package]] name = "geocode-csv" -version = "0.1.2" +version = "0.2.0-alpha.1" dependencies = [ "common_failures 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "csv 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index af2bc17..9aebcd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geocode-csv" -version = "0.1.2" +version = "0.2.0-alpha.1" authors = ["Eric Kidd "] edition = "2018"