From 4ecc038e9406c24fe598c1bddcbd275e22c0cc68 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Tue, 28 Oct 2025 07:57:46 +1300 Subject: [PATCH 1/4] ci: update Jet version --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8ce34057c..2095068b5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -98,7 +98,7 @@ jobs: run: | import Pkg Pkg.activate("juliahub-jet", shared=true) - Pkg.add(name="JET", version="0.9") + Pkg.add(name="JET", version="0.11") Pkg.develop(path=".") - name: "JET.test_package(..., mode=:basic) [informational]" run: julia --color=yes --project=@juliahub-jet test/jet.jl From 542f9ae42e9167b07a2ec78cf6670c48f55830a8 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Tue, 28 Oct 2025 11:47:09 +0200 Subject: [PATCH 2/4] fix typo in datasets.jl --- src/datasets.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/datasets.jl b/src/datasets.jl index 08be8b274..8a42010a9 100644 --- a/src/datasets.jl +++ b/src/datasets.jl @@ -183,7 +183,7 @@ function Dataset(d::Dict; expected_project::Union{UUID, Nothing}=nothing) _get_json(project_json, "project_id", String) ) if project_json_uuid != expected_project - msg = "Project UUID mismatch in dataset response: $(project_json_uuid), requested $(project)" + msg = "Project UUID mismatch in dataset response: $(project_json_uuid), requested $(expected_project)" throw(JuliaHubError(msg)) end is_writable = _get_json( From 0beb708fc6b3eb5be3da5619c0e35b73fa915fb1 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Wed, 29 Oct 2025 11:06:45 +0200 Subject: [PATCH 3/4] 0.10 --- .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 2095068b5..c53518b1b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,7 +7,7 @@ on: tags: ["*"] pull_request: schedule: - - cron: '0 0 * * 1' # runs 00:00 UTC on every Monday + - cron: "0 0 * * 1" # runs 00:00 UTC on every Monday concurrency: # Skip intermediate builds: always. @@ -98,7 +98,7 @@ jobs: run: | import Pkg Pkg.activate("juliahub-jet", shared=true) - Pkg.add(name="JET", version="0.11") + Pkg.add(name="JET", version="0.10") Pkg.develop(path=".") - name: "JET.test_package(..., mode=:basic) [informational]" run: julia --color=yes --project=@juliahub-jet test/jet.jl @@ -114,8 +114,8 @@ jobs: name: Documentation runs-on: ubuntu-latest permissions: - pull-requests: read # Required when using `push_preview=true` - statuses: write # Optional, used to report documentation build statuses + pull-requests: read # Required when using `push_preview=true` + statuses: write # Optional, used to report documentation build statuses steps: - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 From 490e05561289e95eb4839d8f1147db4005421807 Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Wed, 29 Oct 2025 11:12:39 +0200 Subject: [PATCH 4/4] use 1.12 --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 47d506a83..c53518b1b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -92,7 +92,7 @@ jobs: - uses: actions/checkout@v5 - uses: julia-actions/setup-julia@v2 with: - version: "1.11" + version: "1" - name: "Install dependencies" shell: julia --color=yes {0} run: |