diff options
author | Canop <cano.petrole@gmail.com> | 2020-02-16 15:21:08 +0100 |
---|---|---|
committer | Canop <cano.petrole@gmail.com> | 2020-02-16 15:21:08 +0100 |
commit | d77d7097e60e5ecda977f7916b78b0a996972e28 (patch) | |
tree | c31aa2d91b72a0a2819160c782e7d4c7970f30b1 | |
parent | c35fd8ea84a0f6c441afd4c66edb631de123f1ae (diff) |
version 0.13.2v0.13.2
-rw-r--r-- | CHANGELOG.md | 3 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rwxr-xr-x | compile-all-targets.sh | 3 |
4 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4420f5a..edf27fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ -### master +<a name="v0.13.2"></a> +### v0.13.2 - 2020-02-16 - fix -i and -I launch arguments being ignored (fix #202) <a name="v0.13.1"></a> @@ -93,7 +93,7 @@ dependencies = [ [[package]] name = "broot" -version = "0.13.1" +version = "0.13.2" dependencies = [ "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1,6 +1,6 @@ [package] name = "broot" -version = "0.13.1" +version = "0.13.2" authors = ["dystroy <denys.seguret@gmail.com>"] repository = "https://github.com/Canop/broot" documentation = "https://dystroy.org/broot" diff --git a/compile-all-targets.sh b/compile-all-targets.sh index ec6f81a..3a91bfd 100755 --- a/compile-all-targets.sh +++ b/compile-all-targets.sh @@ -27,7 +27,8 @@ cp "$(broot -c ":gi;release :focus;broot.bash :parent;:pp" target)/"* build/comp # build the windows version # You need first to install the proper cargo toolchain: -# rustup target add x86_64-pc-windows-gnu +# rustup target add x86_64-pc-windows-gnu +# sudo apt install mingw-w64 echo "compiling the Windows version" cargo build --target x86_64-pc-windows-gnu --release mkdir build/x86_64-pc-windows-gnu/ |