Skip to content

Commit 745b2c2

Browse files
committed
Bump version: 0.3.4-dev0 → 0.3.4-dev1
1 parent 2df2ef1 commit 745b2c2

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

formats/ome-converter-tool/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.4-dev0
2+
current_version = 0.3.4-dev1
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<dev>\d+))?

formats/ome-converter-tool/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OME Converter (v0.3.4-dev0)
1+
# OME Converter (v0.3.4-dev1)
22

33
This WIPP plugin converts BioFormats supported data types to the
44
OME Zarr or OME TIF file format. This is not a complete implementation, rather it implements a file
@@ -35,4 +35,4 @@ This plugin takes 2 input arguments and 1 output argument:
3535
## Docker Command
3636

3737
```bash
38-
docker run -e POLUS_IMG_EXT=".ome.zarr" --e NUM_THREADS=4 -v /Users/username/:/Users/username/ polusai/ome-converter-tool:0.3.4-dev0 --inpDir=/Users/path/to/Images/ --filePattern=".*.tif" --outDir=/Users/path/to/outputs
38+
docker run -e POLUS_IMG_EXT=".ome.zarr" --e NUM_THREADS=4 -v /Users/username/:/Users/username/ polusai/ome-converter-tool:0.3.4-dev1 --inpDir=/Users/path/to/Images/ --filePattern=".*.tif" --outDir=/Users/path/to/outputs

formats/ome-converter-tool/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.4-dev0
1+
0.3.4-dev1

formats/ome-converter-tool/ict.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ author:
22
- Nick Schaub
33
- Hamdah Shafqat
44
contact: nick.schaub@nih.gov
5-
container: polusai/ome-converter-tool:0.3.4-dev0
5+
container: polusai/ome-converter-tool:0.3.4-dev1
66
description: Convert Bioformats supported format to OME Zarr or OME TIF
77
entrypoint: python3 -m polus.images.formats.ome_converter
88
inputs:
@@ -38,4 +38,4 @@ ui:
3838
key: inputs.filePattern
3939
title: Filepattern
4040
type: text
41-
version: 0.3.4-dev0
41+
version: 0.3.4-dev1

formats/ome-converter-tool/omeconverter.cwl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ outputs:
2020
type: Directory
2121
requirements:
2222
DockerRequirement:
23-
dockerPull: polusai/ome-converter-tool:0.3.4-dev0
23+
dockerPull: polusai/ome-converter-tool:0.3.4-dev1
2424
InitialWorkDirRequirement:
2525
listing:
2626
- entry: $(inputs.outDir)

formats/ome-converter-tool/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "OME Converter",
3-
"version": "0.3.4-dev0",
3+
"version": "0.3.4-dev1",
44
"title": "OME Converter",
55
"description": "Convert Bioformats supported format to OME Zarr or OME TIF",
66
"author": "Nick Schaub (nick.schaub@nih.gov), Hamdah Shafqat Abbasi (hamdahshafqat.abbasi@nih.gov)",
77
"institution": "National Center for Advancing Translational Sciences, National Institutes of Health",
88
"repository": "https://github.com/PolusAI/image-tools",
99
"website": "https://ncats.nih.gov/preclinical/core/informatics",
1010
"citation": "",
11-
"containerId": "polusai/ome-converter-tool:0.3.4-dev0",
11+
"containerId": "polusai/ome-converter-tool:0.3.4-dev1",
1212
"baseCommand": [
1313
"python3",
1414
"-m",

formats/ome-converter-tool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "polus-images-formats-ome-converter"
3-
version = "0.3.4-dev0"
3+
version = "0.3.4-dev1"
44
description = "Convert BioFormats datatypes to ome.tif or ome.zarr file format"
55
authors = [
66
"Nick Schaub <nick.schaub@nih.gov>",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Ome Converter."""
22

3-
__version__ = "0.3.4-dev0"
3+
__version__ = "0.3.4-dev1"
44

55
from .image_converter import batch_convert
66
from .image_converter import convert_image

0 commit comments

Comments
 (0)