Skip to content

Commit

Permalink
Version 0.1.1
Browse files Browse the repository at this point in the history
- Fix help text for `--parser`
  • Loading branch information
lukas-reineke committed Jul 28, 2022
1 parent 5565988 commit 2e5359f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,22 @@ jobs:
strategy:
matrix:
build:
[linux-x86_64, macos-x86_64, windows-x86_64-gnu, windows-x86_64-msvc]
[
linux-x86_64,
linux-x86_64-musl,
macos-x86_64,
windows-x86_64-gnu,
windows-x86_64-msvc,
]
include:
- build: linux-x86_64
os: ubuntu-latest
rust: nightly
target: x86_64-unknown-linux-gnu
- build: linux-x86_64-musl
os: ubuntu-latest
rust: nightly
target: x86_64-unknown-linux-musl
- build: macos-x86_64
os: macos-latest
rust: nightly
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async fn main() {

let mut app =
App::new("cbfmt")
.version("0.1.0")
.version("0.1.1")
.author("Lukas Reineke <lukas@reineke.jp>")
.about("A tool to format codeblocks inside markdown and org documents.\nIt iterates over all codeblocks, and formats them with the tool(s) specified for the language of the block.")
.arg(
Expand Down Expand Up @@ -59,7 +59,7 @@ async fn main() {
.short('p')
.long("parser")
.value_name("markdown|org")
.help("Sets the parser to use. Required for Stdin.")
.help("Sets the parser to use.")
.takes_value(true),
)
.arg(
Expand Down

0 comments on commit 2e5359f

Please sign in to comment.