From 1f67f0c9571a7efa159f5067ade4423244ab62f3 Mon Sep 17 00:00:00 2001 From: Yun Liu Date: Fri, 30 Jan 2026 13:51:18 +0800 Subject: [PATCH 1/3] update citation, part of #8718 Signed-off-by: Yun Liu --- CITATION.cff | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index c51c8d0ea6..c64aa0169d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -6,8 +6,8 @@ title: "MONAI: Medical Open Network for AI" abstract: "AI Toolkit for Healthcare Imaging" authors: - name: "MONAI Consortium" -date-released: 2025-09-22 -version: "1.5.1" +date-released: 2026-01-29 +version: "1.5.2" identifiers: - description: "This DOI represents all versions of MONAI, and will always resolve to the latest one." type: doi From 8a381059ef69d37c285c894c5d1a8c13ad18e9c8 Mon Sep 17 00:00:00 2001 From: Yun Liu Date: Fri, 30 Jan 2026 14:36:20 +0800 Subject: [PATCH 2/3] test Signed-off-by: Yun Liu --- .github/workflows/blossom-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/blossom-ci.yml b/.github/workflows/blossom-ci.yml index 63ac5536d8..80f16c37dc 100644 --- a/.github/workflows/blossom-ci.yml +++ b/.github/workflows/blossom-ci.yml @@ -73,6 +73,24 @@ jobs: run: | echo detect.excluded.detector.types=PIP >> application.properties + - name: Debug version info + run: | + git fetch --tags --force + git rev-parse HEAD + git tag --points-at HEAD || true + git describe --tags --long --dirty || true + python -c "import monai; print(monai.__version__)" || true + pip show monai | sed -n '1,8p' || true + python - <<'PY' + import importlib.metadata as md + try: + print("metadata.version:", md.version("monai")) + except Exception as e: + print("metadata.version error:", e) + PY + sed -n '1,15p' CITATION.cff + sed -n '1,25p' setup.cfg + - name: Run blossom action uses: NVIDIA/blossom-action@main env: From b9cefd1f39bf0a3863824d1a886449699a0ef2a9 Mon Sep 17 00:00:00 2001 From: Yun Liu Date: Fri, 30 Jan 2026 15:09:37 +0800 Subject: [PATCH 3/3] test Signed-off-by: Yun Liu --- .github/workflows/blossom-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/blossom-ci.yml b/.github/workflows/blossom-ci.yml index 63ac5536d8..80f16c37dc 100644 --- a/.github/workflows/blossom-ci.yml +++ b/.github/workflows/blossom-ci.yml @@ -73,6 +73,24 @@ jobs: run: | echo detect.excluded.detector.types=PIP >> application.properties + - name: Debug version info + run: | + git fetch --tags --force + git rev-parse HEAD + git tag --points-at HEAD || true + git describe --tags --long --dirty || true + python -c "import monai; print(monai.__version__)" || true + pip show monai | sed -n '1,8p' || true + python - <<'PY' + import importlib.metadata as md + try: + print("metadata.version:", md.version("monai")) + except Exception as e: + print("metadata.version error:", e) + PY + sed -n '1,15p' CITATION.cff + sed -n '1,25p' setup.cfg + - name: Run blossom action uses: NVIDIA/blossom-action@main env: