semver-common 1.2.1

Common library to use for semantic release core and plugins.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod auth;
mod commit_all;
mod fetch;
mod get_commits;
mod latest_tag;
mod push;
mod tag;

pub use commit_all::commit_all;
pub use fetch::fetch;
pub use get_commits::get_commits;
pub use latest_tag::latest_tag;
pub use push::push;
pub use tag::tag;