Skip to content

Commit

Permalink
chore: update cargo specs and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpasmantier committed Oct 4, 2024
1 parent c28e3d1 commit 67c0e93
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "grip-grab"
version = "0.4.0"
version = "0.4.1"
edition = "2021"
authors = ["Alexandre Pasmantier <[email protected]>"]
license = "Apache-2.0"
description = "A faster, more lightweight ripgrep alternative."
readme = "README.md"
homepage = "https://github.com/alexpasmantier/grip-grep"
repository = "https://github.com/alexpasmantier/grip-grep"
homepage = "https://github.com/alexpasmantier/grip-grab"
repository = "https://github.com/alexpasmantier/grip-grab"
keywords = ["cli", "search", "grep", "ripgrep", "rust"]
categories = [
"command-line-utilities",
Expand Down
4 changes: 2 additions & 2 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ use crate::{printer::PrintMode, utils};
use clap::{ArgAction, Parser, Subcommand};

#[derive(Parser, Debug)]
#[command(name = "grip-grep")]
#[command(name = "grip-grab")]
#[command(bin_name = "gg")]
#[command(version, about = "A somewhat faster, more lightweight, ripgrep-inspired alternative.", long_about = None, arg_required_else_help=true)]
#[command(version, about = "A faster, more lightweight ripgrep alternative for day to day usecases.", long_about = None, arg_required_else_help=true)]
pub struct Cli {
/// a regex pattern to search for
#[arg(num_args = 1)]
Expand Down
2 changes: 1 addition & 1 deletion src/upgrade.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub fn upgrade_gg(force: bool) {
println!("└─────────────────────────────────────────┘\n");

let mut command = Command::new("cargo");
command.arg("install").arg("grip-grep");
command.arg("install").arg("grip-grab");
if force {
command.arg("--force");
}
Expand Down

0 comments on commit 67c0e93

Please sign in to comment.