jayver 1.0.0

A calendar versioning scheme for binaries developed by Emmett Jayhart
Documentation
//! Example showing different ways to get today's version.
use jayver::{today, Version};

fn main() {
    // Using the module function
    let version1 = today();
    println!("Today (from module): {version1}");

    // Using the struct method
    let version2 = Version::today();
    println!("Today (from struct): {version2}");

    // With a custom patch number
    let mut version3 = Version::today();
    version3.patch = 5;
    println!("Today with patch 5: {version3}");

    // Convert years
    let full_year = Version::full_year(25);
    println!("Full year for 25: {full_year}");

    let short_year = Version::short_year(2025);
    println!("Short year for 2025: {short_year}");
}