From f474d2455e5cf604219986135d0d70e1528f62bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Tue, 2 Nov 2021 12:20:45 -0300 Subject: [PATCH] Bumping version to 0.3.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- install.sh | 2 +- tests/compress_and_decompress.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 75733f1..65ca57c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -293,7 +293,7 @@ dependencies = [ [[package]] name = "ouch" -version = "0.2.0" +version = "0.3.1" dependencies = [ "atty", "bzip2", diff --git a/Cargo.toml b/Cargo.toml index 298b454..b42e68e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ouch" -version = "0.3.0" +version = "0.3.1" authors = ["Vinícius Rodrigues Miguel ", "João M. Bezerra "] edition = "2018" readme = "README.md" diff --git a/install.sh b/install.sh index 9a3c06d..f6f4f30 100644 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #! /usr/bin/sh # Needs to be updated each version bump -VERSION="0.3.0" +VERSION="0.3.1" DOWNLOAD_LOCATION="/tmp/ouch-binary" INSTALLATION_LOCATION="/usr/local/bin/ouch" diff --git a/tests/compress_and_decompress.rs b/tests/compress_and_decompress.rs index 3f06690..1c9a54b 100644 --- a/tests/compress_and_decompress.rs +++ b/tests/compress_and_decompress.rs @@ -20,7 +20,7 @@ use utils::*; fn sanity_check_through_mime() { // Somehow this test causes test failures when run in parallel with test_each_format // This is a temporary hack that should allow the tests to pass while this bug isn't solved. - std::thread::sleep(Duration::from_secs(2)); + std::thread::sleep(Duration::from_secs(10)); let temp_dir = tempfile::tempdir().expect("to build a temporary directory");