Skip to content

Commit 7e130e2

Browse files
committed
fnsince.pl: Remove prerelease version tapdancing.
1 parent b775135 commit 7e130e2

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

build-scripts/fnsince.pl

+1-7
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,9 @@
9090
my $tag = $fulltags{$release};
9191
my $blobname = "$tag:src/dynapi/SDL_dynapi_overrides.h";
9292

93-
if ($release =~ /\A3\.(0\.\d+|1\.[0123]\Z)/) { # make everything up to the first SDL3 prerelease look like 3.1.3 (ABI lock version).
94-
$release = '3.1.3';
95-
}
96-
97-
# !!! FIXME: REMOVE ME WHEN 3.2.0 SHIPS!
98-
elsif (not $release =~ /\A3\.1\.\d+/) { # a couple of releases after the initial 3.1.3, let them through.
93+
if ($release =~ /\A3\.[01]\.\d+\Z/) { # make everything up to the first SDL3 official release look like 3.2.0.
9994
$release = '3.2.0';
10095
}
101-
# !!! FIXME: REMOVE ME WHEN 3.2.0 SHIPS!
10296

10397
open(PIPEFH, '-|', "git show '$blobname'") or die "Failed to read git blob '$blobname': $!\n";
10498
while (<PIPEFH>) {

0 commit comments

Comments
 (0)