patch-release-me 0.6.6

A tool to automate patching of your projects before you release them
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[allow(dead_code)]
#[derive(Error, Debug, Clone, PartialEq, Eq)]
pub enum Error {
    #[error("Invalid Language: {0}")]
    InvalidLanguage(String),

    #[error("Unknown Error: {0}")]
    Unknown(String),
}