gitversion-rs 0.2.4

Rust port of GitVersion — calculates semantic versions from Git history. Full feature port with a Ratatui TUI.
Documentation
1
2
3
4
5
6
7
8
//! GitVersion configuration: data model, workflow defaults, effective config, loader.

pub mod defaults;
pub mod effective;
pub mod loader;
pub mod model;

pub use model::*;