mirror of
https://github.com/curl/curl.git
synced 2026-07-24 20:17:17 +03:00
managen: ignore version mentions < 7.66.0
Only mention version specific details for versions from within the last six years. Closes #18583
This commit is contained in:
parent
04e08664a8
commit
0a27a506b1
1 changed files with 2 additions and 2 deletions
|
|
@ -265,8 +265,8 @@ sub too_old {
|
|||
elsif($version =~ /^(\d+)\.(\d+)/) {
|
||||
$a = $1 * 1000 + $2 * 10;
|
||||
}
|
||||
if($a < 7600) {
|
||||
# we consider everything before 7.60.0 to be too old to mention
|
||||
if($a < 7660) {
|
||||
# we consider everything before 7.66.0 to be too old to mention
|
||||
# specific changes for
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue