From 1e2150b32a8ba491f9c686872a6f7a4d5068d439 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Thu, 18 May 2023 14:54:34 -0400 Subject: [PATCH] v1.3.5: Fix release build --- 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 2df373c..6556e90 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.5] - 2023-05-18 + +### Fixed + +- Fix broken release build caused by incorrect use of `cfg!` macro. + ## [1.3.4] - 2023-05-18 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 86cbc72..1a5bcda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -794,7 +794,7 @@ dependencies = [ [[package]] name = "geocode-csv" -version = "1.3.4" +version = "1.3.5" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 25bf5fc..06b18ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "geocode-csv" -version = "1.3.4" +version = "1.3.5" authors = ["Eric Kidd "] edition = "2018"