Skip to content

Commit

Permalink
Bump version number for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
hisbaan committed Apr 20, 2022
1 parent 42b3167 commit d16cb5b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
22 changes: 14 additions & 8 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "didyoumean"
authors = ["Hisbaan Noorani"]
version = "1.1.0"
version = "1.1.1"
edition = "2021"
license = "GPL-3.0"
description = "A cli spelling corrector"
description = "A CLI spelling corrector"
documentation = "/~https://github.com/hisbaan/didyoumean"
homepage = "/~https://github.com/hisbaan/didyoumean"
repository = "/~https://github.com/hisbaan/didyoumean"
readme = "docs/README.md"
keywords = ["levenshtein", "damerau", "edit-distance"]
keywords = ["levenshtein", "damerau", "edit-distance", "spelling"]
categories = ["command-line-utilities"]

[[bin]]
name = "dym"
path = "src/main.rs"

[dependencies]
clap = { version = "3.1.8", features = ["derive"] }
clap = { version = "3.1.10", features = ["derive"] }
colored = { version = "2" }
cli-clipboard = {version = "0.2.1"}
dialoguer = {version = "0.10.0"}
Expand All @@ -27,7 +27,7 @@ atty = { version = "0.2.14" }
nix = { version = "0.23.1" }

[dev-dependencies]
criterion = "0.3"
criterion = "0.3.5"

[[bench]]
name = "edit_distance"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const WORDS: &str = include_str!("words.txt");

// Parse command line arguments to get the search term.
#[derive(Parser)]
#[clap(author = "Hisbaan Noorani", version = "1.1.0", about = "Did You Mean: A cli spelling corrector", long_about = None)]
#[clap(author = "Hisbaan Noorani", version = "1.1.1", about = "Did You Mean: A cli spelling corrector", long_about = None)]
struct Cli {
search_term: Option<String>,
#[clap(
Expand Down

0 comments on commit d16cb5b

Please sign in to comment.