From 44f78a56e459fdbc4453e5ad766cc9fc482d7b33 Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Sat, 20 Jun 2026 06:52:04 -0500 Subject: [PATCH 1/5] Add downgrade testing for compat lower bounds --- .github/workflows/CI.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 31cc307..84beddd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -60,3 +60,17 @@ jobs: - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v7 + downgrade-compat: + name: Downgrade Compat + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/julia-downgrade-compat@v2 + with: + mode: deps + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 + with: + allow_reresolve: false + force_latest_compatible_version: false From 4d3d1fc3adb8fbf32011e1fdc91ddd9f4bf1a79b Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Sat, 20 Jun 2026 06:55:56 -0500 Subject: [PATCH 2/5] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7bf5abe..684319f 100644 --- a/Project.toml +++ b/Project.toml @@ -6,7 +6,7 @@ version = "1.2.2" DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" [compat] -DataStructures = "0.9, 0.10, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19" +DataStructures = "0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19" julia = "1" [extras] From faed60e67eaa59196181e7fdc4057970a58255a1 Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Sat, 20 Jun 2026 06:59:13 -0500 Subject: [PATCH 3/5] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 684319f..7a4551b 100644 --- a/Project.toml +++ b/Project.toml @@ -6,7 +6,7 @@ version = "1.2.2" DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" [compat] -DataStructures = "0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19" +DataStructures = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19" julia = "1" [extras] From eba883a94e73f9bd143b1f3313ba676f3a16c56e Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Sat, 20 Jun 2026 07:01:32 -0500 Subject: [PATCH 4/5] add 0.10 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 7a4551b..5472457 100644 --- a/Project.toml +++ b/Project.toml @@ -6,7 +6,7 @@ version = "1.2.2" DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" [compat] -DataStructures = "0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19" +DataStructures = "0.10, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19" julia = "1" [extras] From 7ec1406c919dda2e10e1234e359471eba2592380 Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Sat, 20 Jun 2026 07:10:06 -0500 Subject: [PATCH 5/5] re-trigger CI --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 718d5ca..2d604f9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Sorting Algorithms +# Sorting Algorithms [![Build status](https://github.com/JuliaLang/SortingAlgorithms.jl/workflows/CI/badge.svg)](https://github.com/JuliaLang/SortingAlgorithms.jl/actions?query=workflow%3ACI+branch%3Amain) [![Coverage Status](https://codecov.io/github/JuliaCollections/SortingAlgorithms.jl/coverage.svg?branch=main)](https://codecov.io/github/JuliaCollections/SortingAlgorithms.jl?branch=main)