diff --git a/CHANGELOG.md b/CHANGELOG.md index cde482c..c2ad37a 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.9] - 2023-08-01 + +#### Fixed + +- Fix build by ignoring test that requires libpostal data. + ## [1.3.8] - 2023-08-01 ### Added diff --git a/Cargo.lock b/Cargo.lock index 6989b2c..abe35ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -847,7 +847,7 @@ dependencies = [ [[package]] name = "geocode-csv" -version = "1.3.8" +version = "1.3.9" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 41e3107..ed79ea1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geocode-csv" -version = "1.3.8" +version = "1.3.9" authors = ["Eric Kidd "] edition = "2018" diff --git a/tests/server.rs b/tests/server.rs index 438ffab..19dd18a 100644 --- a/tests/server.rs +++ b/tests/server.rs @@ -22,6 +22,7 @@ struct AddressesJson { } #[test] +#[ignore] fn server() -> Result<()> { let testdir = TestDir::new("geocode-csv", "");