panrelease 0.19.0

Utility to release software
Documentation
1
2
3
4
5
6
7
8
9
10
mod cligit;

#[cfg(not(feature = "git2"))]
pub use cligit::GitRepo;

#[cfg(feature = "git2")]
mod libgit;

#[cfg(feature = "git2")]
pub use libgit::GitRepo;