diff --git a/git-cliff-core/src/changelog.rs b/git-cliff-core/src/changelog.rs index 86a8e20300..328a3697da 100644 --- a/git-cliff-core/src/changelog.rs +++ b/git-cliff-core/src/changelog.rs @@ -28,31 +28,30 @@ use std::time::{ }; /// Changelog generator. -#[derive(Debug)] +#[derive(Clone, Debug)] pub struct Changelog<'a> { /// Releases that the changelog will contain. pub releases: Vec>, + /// Configuration. + pub config: Config, header_template: Option