knope_versioning/release_notes/
release.rs

1use crate::{package, semver::Version};
2
3#[derive(Clone, Debug, Eq, Hash, PartialEq)]
4pub struct Release {
5    /// The title of the release without any markdown header prefix
6    pub title: String,
7    pub version: Version,
8    /// The full release notes in Markdown, at header level 1
9    pub notes: String,
10    pub package_name: package::Name,
11}