From 3b7a57f1b0fccfdaa6414291c95caa8fa0a32416 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 21 Feb 2026 03:26:29 -0500 Subject: [PATCH 1/2] Trigger CI --- src/DistributedNext.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/DistributedNext.jl b/src/DistributedNext.jl index 113679b..b614a5b 100644 --- a/src/DistributedNext.jl +++ b/src/DistributedNext.jl @@ -6,6 +6,8 @@ for the purposes of testing new things before merging upstream. Here be dragons! """ module DistributedNext +# Hello world + # imports for extension import Base: getindex, wait, put!, take!, fetch, isready, push!, length, hash, ==, kill, close, isopen, showerror, iterate, IteratorSize From dbcd26d95165b560f0d86fe88263b657f57e9157 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 22 Feb 2026 07:54:52 -0500 Subject: [PATCH 2/2] CI: Run CI on more Julia versions --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a455960..6d15dd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,9 +23,11 @@ jobs: fail-fast: false matrix: version: - - 'nightly' - - '1' - '1.9' + - '1.10' + - '1.11' + - '1.12' + - 'nightly' os: - ubuntu-latest - macOS-latest