diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a8a1d8..7726b1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.0] - 2022-06-29 + +### Fixed + +- Retries now use exponential backoff. This means that we should now give up after about 30 seconds, instead of 10 or 12 like before. + +### Added + +- `--max-retries` can now be used to control how many times we retry before giving up. + ## [1.2.0] - 2022-02-28 ### Added diff --git a/Cargo.lock b/Cargo.lock index 9bbea2a..2619baa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -582,7 +582,7 @@ dependencies = [ [[package]] name = "geocode-csv" -version = "1.2.0" +version = "1.3.0" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 0f9c7e7..b78af68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geocode-csv" -version = "1.2.0" +version = "1.3.0" authors = ["Eric Kidd "] edition = "2018"