From 7d6c993732b31bd7983d923c5e6b38829bd41a89 Mon Sep 17 00:00:00 2001 From: clemsgrs Date: Sun, 12 Apr 2026 14:11:14 +0000 Subject: [PATCH] Bump version to 4.2.0 --- pyproject.toml | 4 ++-- slide2vec/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 31fc35d..f75bdab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "slide2vec" -version = "4.1.1" +version = "4.2.0" description = "Embedding of whole slide images with Foundation Models" readme = "README.md" requires-python = ">=3.10" @@ -157,7 +157,7 @@ no_implicit_reexport = true max-line-length = 160 [tool.bumpver] -current_version = "4.1.1" +current_version = "4.2.0" 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/slide2vec/__init__.py b/slide2vec/__init__.py index a72c320..74b611e 100644 --- a/slide2vec/__init__.py +++ b/slide2vec/__init__.py @@ -2,7 +2,7 @@ from slide2vec.artifacts import HierarchicalEmbeddingArtifact, SlideEmbeddingArtifact, TileEmbeddingArtifact -__version__ = "4.1.1" +__version__ = "4.2.0" __all__ = [ "Model",