Prep for alpha release

This commit is contained in:
Justin Hawkins 2023-03-09 21:16:26 +10:30
parent 565b777399
commit b914799be0

View File

@ -8,7 +8,7 @@ open my $fh, "<", "main.go" || die $!;
my $version;
while (<$fh>) {
# CurrentVersion: "v0.04"
$version = $1 if /CurrentVersion:\s*"(v[\d\.]+)"/;
$version = $1 if /CurrentVersion:\s*"(v.*?)"/;
}
close $fh;