From 758c5875882ac8a0a9b3960c882b72f1e9aa8487 Mon Sep 17 00:00:00 2001 From: "Kris Thielemans@ucl.ac.uk" Date: Sun, 26 Apr 2026 08:48:08 +0100 Subject: [PATCH 1/5] [AppVeyor] fix libparallelproj==1 --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 980190873..e0ca042a9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -51,7 +51,7 @@ build_script: - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%MINICONDA%\\Library\\bin;%PATH%" # install parallelproj and Python stuff # don't do numpy here due to https://github.com/conda-forge/numpy-feedstock/issues/350 - - conda create --name stirbuild -c conda-forge -yq libparallelproj swig pytest ccache ninja cmake + - conda create --name stirbuild -c conda-forge -yq libparallelproj=1 swig pytest ccache ninja cmake - CALL conda.bat activate stirbuild - python --version - pip install numpy matplotlib @@ -89,4 +89,4 @@ test_script: on_finish: # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) - \ No newline at end of file + From d8fca646f70c1a547124fe8ed6fd9a51380c0bd3 Mon Sep 17 00:00:00 2001 From: "Kris Thielemans@ucl.ac.uk" Date: Sun, 26 Apr 2026 08:49:23 +0100 Subject: [PATCH 2/5] [GHA] test release_6.3 branch --- .github/workflows/build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index d1c4289a3..20d0c569c 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -4,7 +4,7 @@ on: push: branches: - master - - tof_sino_UCL + - release_6.3 paths-ignore: - '.appveyor.yml' - 'CITATION.cff' From 8af67c248d42e6d49926ff3f8488bbc427b8020c Mon Sep 17 00:00:00 2001 From: "Kris Thielemans@ucl.ac.uk" Date: Sun, 26 Apr 2026 09:59:53 +0100 Subject: [PATCH 3/5] [GHA] sync workflow with master --- .github/workflows/build-test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 20d0c569c..327f95a13 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -130,7 +130,9 @@ jobs: compiler: clang compiler_version: 21 cuda_version: "0" - BUILD_FLAGS: "-DSTIR_OPENMP=ON" + # openMP off as problems again with brew + BUILD_FLAGS: "-DSTIR_OPENMP=OFF" + # parallelproj off as it needs openMP parallelproj: "OFF" BUILD_TYPE: "Release" ROOT: "OFF" From 5847da0059e8cae5b1b1f3958e73ce8cd7af566f Mon Sep 17 00:00:00 2001 From: "Kris Thielemans@ucl.ac.uk" Date: Sun, 26 Apr 2026 07:52:09 +0100 Subject: [PATCH 4/5] add explicit include for Fixes #1701 --- src/include/stir/IO/GEHDF5Wrapper.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/stir/IO/GEHDF5Wrapper.h b/src/include/stir/IO/GEHDF5Wrapper.h index 9d3a8d0e5..4963c02d1 100644 --- a/src/include/stir/IO/GEHDF5Wrapper.h +++ b/src/include/stir/IO/GEHDF5Wrapper.h @@ -31,6 +31,7 @@ #include "H5Cpp.h" #include +#include START_NAMESPACE_STIR From c93ece15ef9fe6c293da0f29ce8d9f36d805e91b Mon Sep 17 00:00:00 2001 From: "Kris Thielemans@ucl.ac.uk" Date: Sun, 26 Apr 2026 19:34:50 +0100 Subject: [PATCH 5/5] release 6.3.1 [ci skip] --- CMakeLists.txt | 4 ++-- documentation/release_6.3.htm | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d21d92f4..d06ded142 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,8 +60,8 @@ ENDIF() ####### Set Version number etc set(VERSION_MAJOR 6) set(VERSION_MINOR 3) -set(VERSION_PATCH 0) -set(VERSION 060300) # only used in STIRConfig.h.in and swig/CMakeLists.txt +set(VERSION_PATCH 1) +set(VERSION 060301) # only used in STIRConfig.h.in and swig/CMakeLists.txt set(STIR_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) diff --git a/documentation/release_6.3.htm b/documentation/release_6.3.htm index 98c195595..ff14e76fe 100644 --- a/documentation/release_6.3.htm +++ b/documentation/release_6.3.htm @@ -60,6 +60,10 @@

Patch release info

6.3.0 released 31/10/2025
GitHub Milestone 6.3 +
  • + 6.3.1 released 26/04/2026
    + Fix a small compilation problem +
  • Summary for end users (also to be read by developers)