]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
managen: ignore version mentions < 7.66.0
authorDaniel Stenberg <daniel@haxx.se>
Wed, 17 Sep 2025 11:02:01 +0000 (13:02 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 17 Sep 2025 13:47:34 +0000 (15:47 +0200)
Only mention version specific details for versions from within the last
six years.

Closes #18583

scripts/managen

index 1eb536a0e6d7f937f330708317302a1daf076a7e..768c632d4bdf4cc15db54064a37bbd7bad5a9532 100755 (executable)
@@ -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;
     }