From b914799be0bdb44ba53ad9ac5950f9054c9ba2ad Mon Sep 17 00:00:00 2001 From: Justin Hawkins Date: Thu, 9 Mar 2023 21:16:26 +1030 Subject: [PATCH] Prep for alpha release --- build_release.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_release.pl b/build_release.pl index 739d95b..3878ee8 100755 --- a/build_release.pl +++ b/build_release.pl @@ -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;