From 7ac85885681cfab9edf4a7434e5332a1408ea9c8 Mon Sep 17 00:00:00 2001 From: clemsgrs Date: Wed, 18 Mar 2026 18:04:27 +0000 Subject: [PATCH] Bump version to 3.0.1 --- pyproject.toml | 2 +- setup.cfg | 2 +- slide2vec/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 39b7d4f..37e2cc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ warn_unused_configs = true no_implicit_reexport = true [tool.bumpver] -current_version = "3.0.0" +current_version = "3.0.1" version_pattern = "MAJOR.MINOR.PATCH" commit = false # We do version bumping in CI, not as a commit tag = false # Git tag already exists — we don't auto-tag diff --git a/setup.cfg b/setup.cfg index 510b384..6d89cc7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = slide2vec -version = 3.0.0 +version = 3.0.1 description = Embedding of whole slide images with Foundation Models author = Clément Grisi platforms = unix, linux, osx, cygwin, win32 diff --git a/slide2vec/__init__.py b/slide2vec/__init__.py index 25c9fbd..8982b9e 100644 --- a/slide2vec/__init__.py +++ b/slide2vec/__init__.py @@ -2,7 +2,7 @@ from slide2vec.artifacts import SlideEmbeddingArtifact, TileEmbeddingArtifact -__version__ = "3.0.0" +__version__ = "3.0.1" __all__ = [ "Model",