Bumping version to 0.3.1

This commit is contained in:
João M. Bezerra 2021-11-02 12:20:45 -03:00
parent 7ec9699385
commit f474d2455e
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@ -293,7 +293,7 @@ dependencies = [
[[package]]
name = "ouch"
version = "0.2.0"
version = "0.3.1"
dependencies = [
"atty",
"bzip2",

View File

@ -1,6 +1,6 @@
[package]
name = "ouch"
version = "0.3.0"
version = "0.3.1"
authors = ["Vinícius Rodrigues Miguel <vrmiguel99@gmail.com>", "João M. Bezerra <marcospb19@hotmail.com>"]
edition = "2018"
readme = "README.md"

View File

@ -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"

View File

@ -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");