tally-todo 0.5.2

Make TODO management a little more automatic
pub mod add;
pub mod changelog;
pub mod config;
pub mod done;
pub mod init;
pub mod list;
pub mod prune;
pub mod semver;
pub mod remove;
pub mod scan;
pub mod status;

pub use add::cmd_add;
pub use changelog::cmd_changelog;
pub use config::{cmd_config_get, cmd_config_list, cmd_config_set};
pub use done::cmd_done;
pub use init::cmd_init;
pub use list::cmd_list;
pub use prune::cmd_prune;
pub use semver::{cmd_semver, cmd_tag};
pub use remove::cmd_remove;
pub use scan::cmd_scan;
pub use status::cmd_status;