From e4377d36a0538b6645383adab1bab944fbb985a1 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Wed, 23 Sep 2020 08:16:00 -0400 Subject: [PATCH] v0.3.4: Build fix --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/args/opts.rs | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f340ad..7f11ce1c 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). +## 0.3.4 - 2020-09-23 + +### Fixed + +- Build fix. + ## 0.3.3 - 2020-09-22 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 3f2329b4..73cb027a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -184,7 +184,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cage" -version = "0.3.3" +version = "0.3.4" dependencies = [ "boondock 0.1.0-alpha.1 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 19e6a769..20036171 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cage" -version = "0.3.3" +version = "0.3.4" authors = ["Eric Kidd ", "Derek Kastner "] edition = "2018" diff --git a/src/args/opts.rs b/src/args/opts.rs index 5d53b90d..221ccb02 100644 --- a/src/args/opts.rs +++ b/src/args/opts.rs @@ -32,7 +32,7 @@ impl ToArgs for Pull { let mut args = vec![]; if self.quiet { args.push(OsString::from("--quiet")); - } + } args } }