We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b775135 commit 7e130e2Copy full SHA for 7e130e2
build-scripts/fnsince.pl
@@ -90,15 +90,9 @@
90
my $tag = $fulltags{$release};
91
my $blobname = "$tag:src/dynapi/SDL_dynapi_overrides.h";
92
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.
+ if ($release =~ /\A3\.[01]\.\d+\Z/) { # make everything up to the first SDL3 official release look like 3.2.0.
99
$release = '3.2.0';
100
}
101
102
103
open(PIPEFH, '-|', "git show '$blobname'") or die "Failed to read git blob '$blobname': $!\n";
104
while (<PIPEFH>) {
0 commit comments