Skip to content

Commit

Permalink
release: 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Oct 17, 2024
2 parents dc557fc + 179b633 commit 975bfb7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Project Dependencies
Package: cargo-bashman
Version: 0.5.1
Generated: 2024-10-17 20:05:20 UTC
Version: 0.5.2
Generated: 2024-10-17 20:26:26 UTC

| Package | Version | Author(s) | License |
| ---- | ---- | ---- | ---- |
| [adbyss_psl](https://github.com/Blobfolio/adbyss) | 0.13.1 | [Josh Stoik](mailto:[email protected]) | WTFPL |
| [adler2](https://github.com/oyvindln/adler2) | 2.0.0 | [Jonas Schievink](mailto:[email protected]) and [oyvindln](mailto:[email protected]) | 0BSD, Apache-2.0, or MIT |
| [ahash](https://github.com/tkaitchuck/ahash) | 0.8.11 | [Tom Kaitchuck](mailto:[email protected]) | Apache-2.0 or MIT |
| [argyle](https://github.com/Blobfolio/argyle) | 0.10.0 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
| [bashman_core](https://github.com/Blobfolio/bashman) | 0.5.1 | [Josh Stoik](mailto:[email protected]) | WTFPL |
| [bashman_core](https://github.com/Blobfolio/bashman) | 0.5.2 | [Josh Stoik](mailto:[email protected]) | WTFPL |
| [camino](https://github.com/camino-rs/camino) | 1.1.9 | [Without Boats](mailto:[email protected]), [Ashley Williams](mailto:[email protected]), [Steve Klabnik](mailto:[email protected]), and [Rain](mailto:[email protected]) | Apache-2.0 or MIT |
| [cargo-platform](https://github.com/rust-lang/cargo) | 0.1.8 | | Apache-2.0 or MIT |
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | 0.18.1 | [Oliver Schneider](mailto:[email protected]) | MIT |
Expand Down
2 changes: 1 addition & 1 deletion bashman/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-bashman"
version = "0.5.1"
version = "0.5.2"
license = "WTFPL"
authors = ["Josh Stoik <[email protected]>"]
edition = "2021"
Expand Down
4 changes: 3 additions & 1 deletion bashman/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ fn _main() -> Result<(), BashManError> {
},

// Nothing else is expected.
Argument::Other(s) => return Err(BashManError::InvalidCli(s.into_boxed_str())),
Argument::Other(s) => if s != "bashman" {
return Err(BashManError::InvalidCli(s.into_boxed_str()))
},
Argument::InvalidUtf8(s) => return Err(BashManError::InvalidCli(s.to_string_lossy().into_owned().into_boxed_str())),
_ => {},
}
Expand Down
2 changes: 1 addition & 1 deletion bashman_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bashman_core"
version = "0.5.1"
version = "0.5.2"
license = "WTFPL"
authors = ["Josh Stoik <[email protected]>"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions release/man/cargo-bashman.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.TH "CARGO BASHMAN" "1" "October 2024" "cargo\-bashman v0.5.1" "User Commands"
.TH "CARGO BASHMAN" "1" "October 2024" "cargo\-bashman v0.5.2" "User Commands"
.SH NAME
CARGO BASHMAN \- Manual page for cargo\-bashman v0.5.1.
CARGO BASHMAN \- Manual page for cargo\-bashman v0.5.2.
.SH DESCRIPTION
A Cargo plugin to generate BASH completions and MAN pages.
.SS USAGE:
Expand Down

0 comments on commit 975bfb7

Please sign in to comment.