File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ A tool for generating documentation/help menu for user defined bash functions.
88edition = " 2018"
99homepage = " https://github.com/dustinknopoff/bashdoc"
1010repository = " https://github.com/dustinknopoff/bashdoc"
11+ documentation = " https://docs.rs/crate/bashdoc"
1112readme = " README.md"
1213keywords = [" bash" , " docs" , " documentation" ]
1314categories = [" command-line-utilities" , " text-processing" ]
Original file line number Diff line number Diff line change @@ -95,4 +95,12 @@ See the [examples](https://github.com/dustinknopoff/bashdoc/tree/master/example)
9595
9696See the [ changelog] ( https://github.com/dustinknopoff/bashdoc/blob/master/CHANGELOG.md ) for updates
9797
98+ ## Changelog
99+
100+ - v0.4.0 - Added to crates.io
101+ - v0.4.1/v0.4.2 - Better descriptions for crates.io
102+ - v.0.4.5 - Fix error where bashdoc would not function for users without a ` ~/.bashdocrc `
103+ - v.0.4.6 - Improved Error handling, ` --html ` argument removed replaced with ` --location ` , ` --template ` argument added for supplying custom ` .hbs `
104+ - v0.4.7 - Fix required location for all inputs and not exclusive to ` --location `
105+
98106License: MIT
Original file line number Diff line number Diff line change 9292//! See the [examples](https://github.com/dustinknopoff/bashdoc/tree/master/example) folder for more.
9393//!
9494//! See the [changelog](https://github.com/dustinknopoff/bashdoc/blob/master/CHANGELOG.md) for updates
95+ //!
96+ //! # Changelog
97+ //!
98+ //!- v0.4.0 - Added to crates.io
99+ //!- v0.4.1/v0.4.2 - Better descriptions for crates.io
100+ //!- v.0.4.5 - Fix error where bashdoc would not function for users without a `~/.bashdocrc`
101+ //!- v.0.4.6 - Improved Error handling, `--html` argument removed replaced with `--location`, `--template` argument added for supplying custom `.hbs`
102+ //!- v0.4.7 - Fix required location for all inputs and not exclusive to `--location`
95103mod docs;
96104use crate :: docs:: runners:: * ;
97105use clap:: { load_yaml, App } ;
You can’t perform that action at this time.
0 commit comments