(cargo-release) version 0.8.2

pull/11/head
phiresky 5 years ago
parent 1705c6228c
commit 81ff9e0485

2
Cargo.lock generated

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

@ -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 <phireskyde+git@gmail.com>"]
edition = "2018"

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

Loading…
Cancel
Save