chore(release): 0.0.1 #4

Merged
kjuulh merged 3 commits from cuddle-please/release into main 2023-08-01 17:53:51 +02:00
5 changed files with 73 additions and 4 deletions
Showing only changes of commit 45670e8042 - Show all commits

View File

@@ -229,6 +229,6 @@ fn parse_conventional_commits(
fn get_current_version(significant_tag: Option<Tag>) -> Version {
let current_version = significant_tag
.map(|st| Version::try_from(st).unwrap())
.unwrap_or(Version::new(0, 1, 0));
.unwrap_or(Version::new(0, 0, 0));
current_version
}