From c00d5f8dd57bf00d8c89fb50f2d48e03e65f7577 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Fri, 28 Aug 2026 21:03:04 -0700 Subject: [PATCH 1/3] Restore original Julia compat range Keep supporting the Julia versions the package supported before the test item migration instead of raising the floor to 1.12. Co-Authored-By: Claude Fable 5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 3f10841..a50d272 100644 --- a/Project.toml +++ b/Project.toml @@ -10,4 +10,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" test = ["Test", "TestItemRunner"] [compat] -julia = "1.12" +julia = "0.7, 1" From 6946c40841e3808b99631238ffb44af88ee86d66 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Sun, 30 Aug 2026 17:18:44 -0700 Subject: [PATCH 2/3] Set Julia floor to 1.0 Restore the pre-migration compat range but with a minimum of Julia 1.0 instead of 0.7; Julia 0.7 no longer needs to be supported. Co-Authored-By: Claude Fable 5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a50d272..b4750d7 100644 --- a/Project.toml +++ b/Project.toml @@ -10,4 +10,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" test = ["Test", "TestItemRunner"] [compat] -julia = "0.7, 1" +julia = "1" From f5445fbb770d33a59c10b929ff64287f453c5b57 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Sun, 30 Aug 2026 17:32:05 -0700 Subject: [PATCH 3/3] Restore original package version The minor version bump was only needed while the migration raised the minimum Julia version; with the original Julia compat restored, the version can stay as it was. Co-Authored-By: Claude Fable 5 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index b4750d7..f845840 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "IteratorInterfaceExtensions" uuid = "82899510-4779-5014-852e-03e436cf321d" -version = "1.1.0-DEV" +version = "1.0.1-DEV" [extras] TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"