Skip to content

Commit 5cd0b9d

Browse files
committed
release: 0.3.5
2 parents 6f3d54a + 45f3c8a commit 5cd0b9d

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

CREDITS.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Project Dependencies
22
Package: cargo-bashman
3-
Version: 0.3.4
4-
Generated: 2022-01-30 20:48:09 UTC
3+
Version: 0.3.5
4+
Generated: 2022-02-24 17:29:24 UTC
55

66
| Package | Version | Author(s) | License |
77
| ---- | ---- | ---- | ---- |
88
| [aho-corasick](https://github.com/BurntSushi/aho-corasick) | 0.7.18 | [Andrew Gallant](mailto:[email protected]) | MIT or Unlicense |
99
| [argyle](https://github.com/Blobfolio/argyle) | 0.5.2 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
10-
| [bashman_core](https://github.com/Blobfolio/bashman) | 0.3.4 | [Josh Stoik](mailto:[email protected]) | WTFPL |
10+
| [bashman_core](https://github.com/Blobfolio/bashman) | 0.3.5 | [Josh Stoik](mailto:[email protected]) | WTFPL |
1111
| [camino](https://github.com/camino-rs/camino) | 1.0.7 | [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 |
1212
| [cargo-platform](https://github.com/rust-lang/cargo) | 0.1.2 | The Cargo Project Developers | Apache-2.0 or MIT |
13-
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | 0.14.1 | [Oliver Schneider](mailto:[email protected]) | MIT |
13+
| [cargo_metadata](https://github.com/oli-obk/cargo_metadata) | 0.14.2 | [Oliver Schneider](mailto:[email protected]) | MIT |
1414
| [dactyl](https://github.com/Blobfolio/dactyl) | 0.2.4 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
1515
| [fyi_msg](https://github.com/Blobfolio/fyi) | 0.9.3 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
1616
| [hashbrown](https://github.com/rust-lang/hashbrown) | 0.11.2 | [Amanieu d'Antras](mailto:[email protected]) | Apache-2.0 or MIT |
@@ -27,11 +27,11 @@
2727
| [regex](https://github.com/rust-lang/regex) | 1.5.4 | The Rust Project Developers | Apache-2.0 or MIT |
2828
| [regex-syntax](https://github.com/rust-lang/regex) | 0.6.25 | The Rust Project Developers | Apache-2.0 or MIT |
2929
| [ryu](https://github.com/dtolnay/ryu) | 1.0.9 | [David Tolnay](mailto:[email protected]) | Apache-2.0 or BSL-1.0 |
30-
| [semver](https://github.com/dtolnay/semver) | 1.0.4 | [David Tolnay](mailto:[email protected]) | Apache-2.0 or MIT |
30+
| [semver](https://github.com/dtolnay/semver) | 1.0.6 | [David Tolnay](mailto:[email protected]) | Apache-2.0 or MIT |
3131
| [serde](https://github.com/serde-rs/serde) | 1.0.136 | [Erick Tryzelaar](mailto:[email protected]) and [David Tolnay](mailto:[email protected]) | Apache-2.0 or MIT |
3232
| [serde_derive](https://github.com/serde-rs/serde) | 1.0.136 | [Erick Tryzelaar](mailto:[email protected]) and [David Tolnay](mailto:[email protected]) | Apache-2.0 or MIT |
33-
| [serde_json](https://github.com/serde-rs/json) | 1.0.78 | [Erick Tryzelaar](mailto:[email protected]) and [David Tolnay](mailto:[email protected]) | Apache-2.0 or MIT |
33+
| [serde_json](https://github.com/serde-rs/json) | 1.0.79 | [Erick Tryzelaar](mailto:[email protected]) and [David Tolnay](mailto:[email protected]) | Apache-2.0 or MIT |
3434
| [syn](https://github.com/dtolnay/syn) | 1.0.86 | [David Tolnay](mailto:[email protected]) | Apache-2.0 or MIT |
3535
| [toml](https://github.com/alexcrichton/toml-rs) | 0.5.8 | [Alex Crichton](mailto:[email protected]) | Apache-2.0 or MIT |
3636
| [unicode-xid](https://github.com/unicode-rs/unicode-xid) | 0.2.2 | [erick.tryzelaar](mailto:[email protected]), [kwantam](mailto:[email protected]), and [Manish Goregaokar](mailto:[email protected]) | Apache-2.0 or MIT |
37-
| [utc2k](https://github.com/Blobfolio/utc2k) | 0.3.3 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |
37+
| [utc2k](https://github.com/Blobfolio/utc2k) | 0.3.4 | [Blobfolio, LLC.](mailto:[email protected]) | WTFPL |

bashman/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "cargo-bashman"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
license = "WTFPL"
55
authors = ["Josh Stoik <[email protected]>"]
66
edition = "2021"
77
rust-version = "1.56"
8-
description = "BashMan is a Cargo plugin that helps you generate BASH completions and/or MAN pages for your Rust project."
8+
description = "A Cargo plugin to generate BASH completions and MAN pages."
99
repository = "https://github.com/Blobfolio/bashman"
1010
publish = false
1111

@@ -15,7 +15,8 @@ copyright = "2022, Blobfolio, LLC <[email protected]>"
1515
license-file = ["../LICENSE", "0"]
1616
revision = "1"
1717
depends = "$auto"
18-
section = "utility"
18+
extended-description = ""
19+
section = "rust"
1920
assets = [
2021
["../target/x86_64-unknown-linux-gnu/release/cargo-bashman", "usr/bin/", "755"],
2122
["../release/completions/cargo-bashman.bash", "etc/bash_completion.d/", "644"],

bashman_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bashman_core"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
license = "WTFPL"
55
authors = ["Josh Stoik <[email protected]>"]
66
edition = "2021"

release/man/cargo-bashman.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
.TH "CARGO BASHMAN" "1" "January 2022" "Cargo BashMan v0.3.4" "User Commands"
1+
.TH "CARGO BASHMAN" "1" "February 2022" "Cargo BashMan v0.3.5" "User Commands"
22
.SH NAME
3-
Cargo BashMan \- Manual page for cargo\-bashman v0.3.4.
3+
Cargo BashMan \- Manual page for cargo\-bashman v0.3.5.
44
.SH DESCRIPTION
5-
BashMan is a Cargo plugin that helps you generate BASH completions and/or MAN pages for your Rust project.
5+
A Cargo plugin to generate BASH completions and MAN pages.
66
.SS USAGE:
77
.TP
88
cargo\-bashman [FLAGS] [OPTIONS]

0 commit comments

Comments
 (0)