1
2
3
4
5
6
7
8
9
10
11
use crate::{package, semver::Version};

#[derive(Clone, Debug, Eq, Hash, 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,
    pub package_name: package::Name,
}