From fc7d67097b5ee1b8eae9c1715760bb9bd1af79a0 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Thu, 11 May 2023 07:47:41 -0400 Subject: [PATCH] v0.3.2: Skip geocoding empty records --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e2bf3f..8993e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.2] - 2023-05-11 + +### Fixed + +- Do not attempt to geocode empty addresses. This has recently started causing SmartyStreets to return an error. + ## [1.3.1] - 2022-10-26 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 215e354..3667f56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -767,7 +767,7 @@ dependencies = [ [[package]] name = "geocode-csv" -version = "1.3.1" +version = "1.3.2" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 6a25ba2..a43cc2f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geocode-csv" -version = "1.3.1" +version = "1.3.2" authors = ["Eric Kidd "] edition = "2018"