From b6c0d17a2eaee6b598c3aab2b05a006d7e3570c1 Mon Sep 17 00:00:00 2001 From: Laurent Guerard Date: Mon, 22 Jun 2026 15:18:28 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=94=96=20bump=20version=20to=200?= =?UTF-8?q?.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit New minor release: adds the optional OME-ZARR conversion and napari viewer plugins. Co-Authored-By: Claude Opus 4.8 --- pyproject.toml | 2 +- src/patchworks/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 617584a..c4049c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "patchworks" -version = "0.2.0" +version = "0.3.0" description = "Tiled processing of arbitrarily large images with globally consistent labels" readme = "README.md" license = { text = "MIT" } diff --git a/src/patchworks/__init__.py b/src/patchworks/__init__.py index a47fada..d108ef6 100644 --- a/src/patchworks/__init__.py +++ b/src/patchworks/__init__.py @@ -33,7 +33,7 @@ from ._merge import merge_tile_labels from ._relabel import relabel_sequential_array, relabel_sequential_zarr -__version__ = "0.2.0" +__version__ = "0.3.0" __all__ = [ "tile_process", "merge_tile_labels",