From 3123fd2eac0da0e800923d8b9f3c86bc6814edd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Wed, 27 Dec 2023 16:24:44 +0300 Subject: [PATCH] chore(changelog): use 0.1.0 as default next release if no tag is found --- git-cliff-core/src/release.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-cliff-core/src/release.rs b/git-cliff-core/src/release.rs index 578fedbd41..63dc4fedda 100644 --- a/git-cliff-core/src/release.rs +++ b/git-cliff-core/src/release.rs @@ -128,8 +128,8 @@ impl<'a> Release<'a> { } } None => { - warn!("No releases found, using 0.0.1 as the next version."); - Ok(String::from("0.0.1")) + warn!("No releases found, using 0.1.0 as the next version."); + Ok(String::from("0.1.0")) } } }