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")) } } }