From e62a0f3534268e939958f8e5e15042d69863ea2c Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Sat, 27 Jan 2024 22:31:06 +0000 Subject: [PATCH] automatic cargo CI changes --- src/changelog/mod.rs | 5 +---- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/changelog/mod.rs b/src/changelog/mod.rs index c4900cf..3cd41a0 100644 --- a/src/changelog/mod.rs +++ b/src/changelog/mod.rs @@ -24,10 +24,7 @@ impl Changelog { }, }; let git_log = Self::make_git_log(cfg)?; - Ok(Changelog { - message, - git_log, - }) + Ok(Changelog { message, git_log }) } fn make_git_log(cfg: &Config) -> Result> { diff --git a/src/lib.rs b/src/lib.rs index 2dcf561..46700fe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,3 @@ +pub mod changelog; pub mod config; pub mod error; -pub mod changelog;