From 74c19e02c3b755d1b69b31e6ad45b1abc5f87516 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 12 Oct 2025 17:33:11 -0400 Subject: [PATCH 1/3] Add support for Julia 1.0.x --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 216a3ae..e47aac0 100644 --- a/Project.toml +++ b/Project.toml @@ -10,7 +10,7 @@ SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce" UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" [compat] -julia = "1.1" +julia = "1" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" From 5ef1c158e005aab3decbaa1ca00e4ebdd577573c Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 12 Oct 2025 17:33:50 -0400 Subject: [PATCH 2/3] Test on Julia 1.0 --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index eb37d5d..ee57156 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,7 +18,8 @@ jobs: fail-fast: false matrix: version: - - '1.1' # oldest Julia supported by this package + - '1.0' # oldest Julia supported by this package + - '1.1' - '1.6' # current LTS - '1' # automatically expands to the latest stable 1.x release of Julia - 'nightly' From b4282babde30201f0938b44fb06803ab45e45cb8 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Mon, 13 Oct 2025 10:15:02 -0400 Subject: [PATCH 3/3] Update CI.yml to include more Julia versions Expanded the Julia version matrix in CI configuration to include versions 1.2 through 1.12. --- .github/workflows/CI.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ee57156..2ed5e8b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,9 +19,18 @@ jobs: matrix: version: - '1.0' # oldest Julia supported by this package - - '1.1' - - '1.6' # current LTS - - '1' # automatically expands to the latest stable 1.x release of Julia + - '1.2' + - '1.3' + - '1.4' + - '1.5' + - '1.6' + - '1.6' # old LTS + - '1.7' + - '1.8' + - '1.9' + - '1.10' # current LTS + - '1.11' + - '1.12' # current stable - 'nightly' os: - ubuntu-latest