From 9e181584696959aa61c426c9f0fed4b3f5e0bb3a Mon Sep 17 00:00:00 2001 From: schillic Date: Sun, 14 Dec 2025 12:52:26 +0100 Subject: [PATCH 1/5] remove REQUIRE file --- REQUIRE | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 REQUIRE diff --git a/REQUIRE b/REQUIRE deleted file mode 100644 index f4b7bcc..0000000 --- a/REQUIRE +++ /dev/null @@ -1,6 +0,0 @@ -julia 1.0 -ModelingToolkit -IntervalArithmetic 0.15 -IntervalRootFinding 0.4 -IntervalContractors 0.3 -MacroTools 0.4 From 378f580743cd8fd83618ed5bb61c7594e33cc3c4 Mon Sep 17 00:00:00 2001 From: schillic Date: Sun, 14 Dec 2025 12:59:09 +0100 Subject: [PATCH 2/5] raise package bounds --- Project.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Project.toml b/Project.toml index 978104c..6f62fe6 100644 --- a/Project.toml +++ b/Project.toml @@ -11,12 +11,12 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" [compat] -IntervalArithmetic = "0.22.12" -IntervalBoxes = "0.2" -IntervalContractors = "0.5" -ReversePropagation = "0.3" +IntervalArithmetic = "0.22.12 - 0.23, 1" +IntervalBoxes = "0.2 - 0.3" +IntervalContractors = "0.5 - 0.6" +ReversePropagation = "0.3 - 0.4" StaticArrays = "1" -Symbolics = "5, 6" +Symbolics = "5 - 6" julia = "1" [extras] From f97eab7f36562822112600b4d9e53fb5f2f2cfbf Mon Sep 17 00:00:00 2001 From: schillic Date: Sun, 14 Dec 2025 12:59:26 +0100 Subject: [PATCH 3/5] v0.14.1 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 6f62fe6..1a27b5e 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "IntervalConstraintProgramming" uuid = "138f1668-1576-5ad7-91b9-7425abbf3153" -version = "0.14.0" +version = "0.14.1" [deps] IntervalArithmetic = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253" From 33fa6450e3a724f1d0049be07d3f2520a1911346 Mon Sep 17 00:00:00 2001 From: schillic Date: Mon, 30 Mar 2026 20:58:03 +0200 Subject: [PATCH 4/5] update CI script versions --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3b794d8..7b5f2cd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -24,12 +24,12 @@ jobs: - os: macOS-latest arch: x86 steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v6 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: actions/cache@v1 + - uses: actions/cache@v3 env: cache-name: cache-artifacts with: @@ -42,6 +42,6 @@ jobs: - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v6 with: file: lcov.info From 625354540d24ed03691d447d9c5a6046e41631e7 Mon Sep 17 00:00:00 2001 From: schillic Date: Mon, 30 Mar 2026 21:33:15 +0200 Subject: [PATCH 5/5] require Julia v1.11 --- .github/workflows/CI.yml | 2 +- Project.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 7b5f2cd..21c1b8a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: version: - - '1.10' + - '1.11' - 'nightly' os: - ubuntu-latest diff --git a/Project.toml b/Project.toml index 1a27b5e..b31901e 100644 --- a/Project.toml +++ b/Project.toml @@ -17,7 +17,7 @@ IntervalContractors = "0.5 - 0.6" ReversePropagation = "0.3 - 0.4" StaticArrays = "1" Symbolics = "5 - 6" -julia = "1" +julia = "1.11" [extras] Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"