1
2
3
4
5
6
7
8
9
10
use crate::semver::Version;

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct Release {
    /// The title of the release without any markdown header prefix
    pub title: String,
    pub version: Version,
    /// The full release notes in Markdown, at header level 1
    pub notes: String,
}