From 02f20d2591ed8b0b658beed2393387a6f58c5d18 Mon Sep 17 00:00:00 2001 From: Najib Ishaq Date: Thu, 25 Jul 2024 14:00:17 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.1=20=E2=86=92=200.7.2-dev?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- formats/vector-to-label-tool/.bumpversion.cfg | 2 +- formats/vector-to-label-tool/README.md | 2 +- formats/vector-to-label-tool/VERSION | 2 +- formats/vector-to-label-tool/plugin.json | 4 ++-- formats/vector-to-label-tool/pyproject.toml | 2 +- .../src/polus/images/formats/vector_to_label/__init__.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/formats/vector-to-label-tool/.bumpversion.cfg b/formats/vector-to-label-tool/.bumpversion.cfg index 26ce82e3f..9eb586c0b 100644 --- a/formats/vector-to-label-tool/.bumpversion.cfg +++ b/formats/vector-to-label-tool/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1 +current_version = 0.7.2-dev0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/formats/vector-to-label-tool/README.md b/formats/vector-to-label-tool/README.md index 0b235a410..333ece668 100644 --- a/formats/vector-to-label-tool/README.md +++ b/formats/vector-to-label-tool/README.md @@ -1,4 +1,4 @@ -# Vector to Label (v0.7.1) +# Vector to Label (v0.7.2-dev0) Here we provide the vector-to-label plugin to convert vector fields to labeled images. We have new algorithms for this conversion that are more accurate than the ones used in the [CellPose](https://www.nature.com/articles/s41592-020-01018-x.epdf?sharing_token=yrCA1mB-y9TR8-RC8w_CPdRgN0jAjWel9jnR3ZoTv0Ms-A3TbUG5N7s_6d3I7lMImMDE6cyl-17ubiknffX50r-dX1un0XSIQ2PGYWsCV1du16fIaipcHNxste8FMByEL75Ek_S2_UEVkSk7lCFllWEVogGWJwmQkBC9uKq9UEA%3D) [(github)](https://github.com/MouseLand/cellpose). diff --git a/formats/vector-to-label-tool/VERSION b/formats/vector-to-label-tool/VERSION index 39e898a4f..d9ab6d52d 100644 --- a/formats/vector-to-label-tool/VERSION +++ b/formats/vector-to-label-tool/VERSION @@ -1 +1 @@ -0.7.1 +0.7.2-dev0 diff --git a/formats/vector-to-label-tool/plugin.json b/formats/vector-to-label-tool/plugin.json index 520a42152..71009bef9 100644 --- a/formats/vector-to-label-tool/plugin.json +++ b/formats/vector-to-label-tool/plugin.json @@ -1,6 +1,6 @@ { "name": "Vector to Label", - "version": "0.7.1", + "version": "0.7.2-dev0", "title": "Vector to Label", "description": "Create labelled masks from flow-field vectors.", "author": "Nick Schaub (nick.schaub@nih.gov), Najib Ishaq (najib.ishaq@nih.gov)", @@ -8,7 +8,7 @@ "repository": "https://github.com/PolusAI/polus-plugins/tree/dev/formats/polus-vector-converter-plugin", "website": "https://ncats.nih.gov/preclinical/core/informatics", "citation": "https://www.biorxiv.org/content/10.1101/2020.02.02.931238v1", - "containerId": "polusai/vector-to-label-tool:0.7.1", + "containerId": "polusai/vector-to-label-tool:0.7.2-dev0", "inputs": [ { "name": "inpDir", diff --git a/formats/vector-to-label-tool/pyproject.toml b/formats/vector-to-label-tool/pyproject.toml index 1876c5249..454e9c457 100644 --- a/formats/vector-to-label-tool/pyproject.toml +++ b/formats/vector-to-label-tool/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "polus-images-formats-vector-to-label" -version = "0.7.1" +version = "0.7.2-dev0" description = "" authors = [ "Najib Ishaq ", diff --git a/formats/vector-to-label-tool/src/polus/images/formats/vector_to_label/__init__.py b/formats/vector-to-label-tool/src/polus/images/formats/vector_to_label/__init__.py index 74e2a3d5b..151e6c236 100644 --- a/formats/vector-to-label-tool/src/polus/images/formats/vector_to_label/__init__.py +++ b/formats/vector-to-label-tool/src/polus/images/formats/vector_to_label/__init__.py @@ -3,4 +3,4 @@ from . import dynamics from . import helpers -__version__ = "0.7.1" +__version__ = "0.7.2-dev0"