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
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 { fn get_current_version(significant_tag: Option<Tag>) -> Version {
let current_version = significant_tag let current_version = significant_tag
.map(|st| Version::try_from(st).unwrap()) .map(|st| Version::try_from(st).unwrap())
.unwrap_or(Version::new(0, 1, 0)); .unwrap_or(Version::new(0, 0, 0));
current_version current_version
} }