From f5926248b33e087b854447ffcf390619ea4087bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Mon, 9 Dec 2024 21:36:26 +0300 Subject: [PATCH] refactor: fix no-default-features --- git-cliff/src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/git-cliff/src/main.rs b/git-cliff/src/main.rs index 4461dc067f..72a5c50f6a 100644 --- a/git-cliff/src/main.rs +++ b/git-cliff/src/main.rs @@ -1,7 +1,6 @@ use clap::Parser; use git_cliff::args::Args; use git_cliff::{ - check_new_version, init_config, logger, }; @@ -65,7 +64,7 @@ fn main() -> Result<()> { // Check if there is a new version available. #[cfg(feature = "update-informer")] - check_new_version(); + git_cliff::check_new_version(); // Create the configuration file if init flag is given. if let Some(path) = &args.init {