Skip to content

Commit

Permalink
chore(changelog): use 0.1.0 as default next release if no tag is found
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Dec 27, 2023
1 parent a3708c7 commit 3123fd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-cliff-core/src/release.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
}
}
}
Expand Down

0 comments on commit 3123fd2

Please sign in to comment.