Skip to content

Commit 41f7087

Browse files
authored
Merge pull request #12 from well-typed/dom/21
Allow Clang version 21
2 parents 558e0a2 + 6f6614d commit 41f7087

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

test/Test/Version.hs

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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/.
8888
historicReleases :: [(Int, Int, Int)]
8989
historicReleases = [
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

Comments
 (0)