chronos 0.0.0

The library and api to manage the versioning system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub enum ReleaseStatus {
    InProgress,
    ReadyForReview,
    InTesting,
    Deployed,
}

pub struct Feature {
    pub name: String,
    pub description: String,
    pub status: ReleaseStatus,
}