@@ -78,16 +78,26 @@ plausible version@(major, _minor, _patch) = or [
7878 version `elem` historicReleases
7979
8080 -- For the current version we don't know which minor/patch to expect
81- , major == 20
81+ , major == 21
8282 ]
8383
8484-- | Historic @llvm@ releases
8585--
86- -- See <https://releases.llvm.org/>, or
86+ -- See <https://releases.llvm.org/> (outdated) , or
8787-- https://github.com/llvm/llvm-project/releases/.
8888historicReleases :: [(Int , Int , Int )]
8989historicReleases = [
90- ( 19 , 1 , 7 ) -- 14 Jan 2025
90+ ( 21 , 1 , 0 ) -- 26 Aug 2025
91+ , ( 20 , 1 , 8 ) -- 08 Jul 2025
92+ , ( 20 , 1 , 7 ) -- 13 Jun 2025
93+ , ( 20 , 1 , 6 ) -- 28 May 2025
94+ , ( 20 , 1 , 5 ) -- 14 May 2025
95+ , ( 20 , 1 , 4 ) -- 30 Apr 2025
96+ , ( 20 , 1 , 3 ) -- 16 Apr 2025
97+ , ( 20 , 1 , 2 ) -- 02 Apr 2025
98+ , ( 20 , 1 , 1 ) -- 19 Mar 2025
99+ , ( 20 , 1 , 0 ) -- 04 Mar 2025
100+ , ( 19 , 1 , 7 ) -- 14 Jan 2025
91101 , ( 19 , 1 , 1 ) -- 01 Oct 2024
92102 , ( 19 , 1 , 0 ) -- 17 Sep 2024
93103 , ( 18 , 1 , 8 ) -- 20 Jun 2024
0 commit comments