Skip to content

Commit

Permalink
Rename package to gen-completions
Browse files Browse the repository at this point in the history
  • Loading branch information
ysthakur committed Dec 24, 2023
1 parent 71ddd93 commit f43945b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- id: release
uses: google-github-actions/release-please-action@v3
with:
package-name: man-completions
package-name: gen-completions
release-type: rust
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
Expand Down
44 changes: 22 additions & 22 deletions 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,7 +1,7 @@
[package]
name = "man-completions"
version = "0.4.0"
description = "Generate completions for Zsh and other shells from manpages"
name = "gen-completions"
version = "0.1.0"
description = "Generate Bash/Zsh completions from manpages or JSON/KDL files"
keywords = ["shell"]
categories = ["command-line-utilities"]
repository = "https://github.com/ysthakur/man-completions"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{path::PathBuf, process::Command};
use anyhow::{anyhow, Result};
use clap::{Parser, Subcommand};
use log::{debug, error, info, warn};
use man_completions::{
use gen_completions::{
gen::{self, OutputFormat},
parse_deser,
parse_man::{detect_subcommands, get_cmd_name, parse_from},
Expand Down

0 comments on commit f43945b

Please sign in to comment.