sr-core 4.0.0

Pure domain logic for sr
Documentation
use thiserror::Error;

#[derive(Debug, Error)]
pub enum ReleaseError {
    #[error("no commits found since tag {tag} ({sha})")]
    NoCommits { tag: String, sha: String },

    #[error(
        "no releasable commits found in {commit_count} commit(s) since tag {tag} (no feat/fix/breaking changes)"
    )]
    NoBump { tag: String, commit_count: usize },

    #[error("configuration error: {0}")]
    Config(String),

    #[error("git error: {0}")]
    Git(String),

    #[error("vcs provider error: {0}")]
    Vcs(String),

    #[error("changelog error: {0}")]
    Changelog(String),

    #[error("version file error: {0}")]
    VersionBump(String),

    #[error("build command failed: {0}")]
    BuildCommand(String),

    #[error("hook failed: {0}")]
    Hook(String),

    #[error(transparent)]
    Other(#[from] anyhow::Error),
}

// Keep anyhow available for conversions even though it's pulled transitively through thiserror.
// sr-core re-exports it so downstream crates don't need a direct dep.
pub use anyhow;