semver-common 0.1.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
15
16
mod mock_change;
mod mock_changelist;
mod mock_commit;
mod mock_commit_map;
mod mock_version;

#[cfg(test)]
pub mod objects {
    use super::*;

    pub use mock_change::change;
    pub use mock_changelist::changelist;
    pub use mock_commit::commit;
    pub use mock_commit_map::commit_map;
    pub use mock_version::version;
}