mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-15 17:28:28 +00:00
fnsince.pl: Remove prerelease version tapdancing.
This commit is contained in:
parent
b775135b4f
commit
7e130e27ba
1 changed files with 1 additions and 7 deletions
|
@ -90,15 +90,9 @@ foreach my $release (@releases) {
|
||||||
my $tag = $fulltags{$release};
|
my $tag = $fulltags{$release};
|
||||||
my $blobname = "$tag:src/dynapi/SDL_dynapi_overrides.h";
|
my $blobname = "$tag:src/dynapi/SDL_dynapi_overrides.h";
|
||||||
|
|
||||||
if ($release =~ /\A3\.(0\.\d+|1\.[0123]\Z)/) { # make everything up to the first SDL3 prerelease look like 3.1.3 (ABI lock version).
|
if ($release =~ /\A3\.[01]\.\d+\Z/) { # make everything up to the first SDL3 official release look like 3.2.0.
|
||||||
$release = '3.1.3';
|
|
||||||
}
|
|
||||||
|
|
||||||
# !!! FIXME: REMOVE ME WHEN 3.2.0 SHIPS!
|
|
||||||
elsif (not $release =~ /\A3\.1\.\d+/) { # a couple of releases after the initial 3.1.3, let them through.
|
|
||||||
$release = '3.2.0';
|
$release = '3.2.0';
|
||||||
}
|
}
|
||||||
# !!! FIXME: REMOVE ME WHEN 3.2.0 SHIPS!
|
|
||||||
|
|
||||||
open(PIPEFH, '-|', "git show '$blobname'") or die "Failed to read git blob '$blobname': $!\n";
|
open(PIPEFH, '-|', "git show '$blobname'") or die "Failed to read git blob '$blobname': $!\n";
|
||||||
while (<PIPEFH>) {
|
while (<PIPEFH>) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue