diff --git a/Cargo.lock b/Cargo.lock index e443147..10f7a22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -918,7 +918,7 @@ dependencies = [ [[package]] name = "ripgrep_all" -version = "0.8.2-alpha.0" +version = "0.8.2" dependencies = [ "bincode 1.1.4 (registry+https://github.com/rust-lang/crates.io-index)", "bzip2 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index a7310a2..19f8d8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "ripgrep_all" description = "ripgrep, but also search in PDFs, E-Books, Office documents, zip, tar.gz, etc" license = "AGPL-3.0-or-later" -version = "0.8.2-alpha.0" +version = "0.8.2" repository = "https://github.com/phiresky/ripgrep_all" authors = ["phiresky "] edition = "2018" diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 92a295b..f3564ac 100755 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -30,16 +30,16 @@ mk_tarball() { local cargo_out_dir="$(cargo_out_dir "target/$TARGET")" # Copy the ripgrep binary and strip it. - cp "target/$TARGET/release/rg" "$staging/rg" - "${gcc_prefix}strip" "$staging/rg" + cp "target/$TARGET/release/rga" "$staging/rga" + "${gcc_prefix}strip" "$staging/rga" # Copy the licenses and README. cp {README.md,UNLICENSE,COPYING,LICENSE-MIT} "$staging/" # Copy documentation and man page. cp {CHANGELOG.md,FAQ.md,GUIDE.md} "$staging/doc/" - if command -V a2x 2>&1 > /dev/null; then - # The man page should only exist if we have asciidoc installed. - cp "$cargo_out_dir/rg.1" "$staging/doc/" - fi + #if command -V a2x 2>&1 > /dev/null; then + # # The man page should only exist if we have asciidoc installed. + # cp "$cargo_out_dir/rg.1" "$staging/doc/" + #fi # Copy shell completion files. cp "$cargo_out_dir"/{rg.bash,rg.fish,_rg.ps1} "$staging/complete/" cp complete/_rg "$staging/complete/"