From e41ca41480470f382a708683237f064d852ac3f1 Mon Sep 17 00:00:00 2001 From: Martin Storath Date: Fri, 8 May 2026 06:33:16 +0000 Subject: [PATCH] Drop .dev0 suffix: bump to 0.1.0 proper for first PyPI artifact --- pyproject.toml | 2 +- python/dcebe/__init__.py | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 742904a..65e2cb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "dcebe" -version = "0.1.0.dev0" +version = "0.1.0" description = "Bolus arrival time estimation for DCE-MRI signals via spline models with generalized cross-validation" license = { file = "LICENSE" } authors = [ diff --git a/python/dcebe/__init__.py b/python/dcebe/__init__.py index 741f3b0..e4fe89a 100644 --- a/python/dcebe/__init__.py +++ b/python/dcebe/__init__.py @@ -11,13 +11,11 @@ small animals based on spline models", Physics in Medicine & Biology 64(4), 2019. DOI: 10.1088/1361-6560/aafce7 -The user-facing API is :func:`estimate_bat`. The current build is -``0.1.0.dev0`` and exposes only the spline-construction primitives; -:func:`estimate_bat` lands in a later port day. +The user-facing API is :func:`estimate_bat`. """ from __future__ import annotations from ._solve import EstimateResult, estimate_bat __all__ = ["EstimateResult", "estimate_bat"] -__version__ = "0.1.0.dev0" +__version__ = "0.1.0"