Skip to content

Commit

Permalink
Bump version: 2.1.2 → 2.1.3-dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
hamshkhawar committed Nov 6, 2024
1 parent 29d3dcb commit d13440a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion regression/basic-flatfield-estimation-tool/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.1.2
current_version = 2.1.3-dev0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<dev>\d+))?
Expand All @@ -26,4 +26,8 @@ replace = version = "{new_version}"

[bumpversion:file:README.md]

[bumpversion:file:flatfieldestimationusingbasicalgorithm.cwl]

[bumpversion:file:ict.yaml]

[bumpversion:file:src/polus/images/regression/basic_flatfield_estimation/__init__.py]
2 changes: 1 addition & 1 deletion regression/basic-flatfield-estimation-tool/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BaSiC Flatfield Correction (v2.1.2)
# BaSiC Flatfield Correction (v2.1.3-dev0)

This WIPP plugin will take a collection of images and use the BaSiC flatfield
correction algorithm to generate a flatfield image, a darkfield image, and a
Expand Down
2 changes: 1 addition & 1 deletion regression/basic-flatfield-estimation-tool/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.2
2.1.3-dev0
4 changes: 2 additions & 2 deletions regression/basic-flatfield-estimation-tool/ict.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ author:
- Nick Schaub
- Najib Ishaq
contact: nick.schaub@nih.gov
container: polusai/basic-flatfield-estimation-tool:2.1.2-dev0
container: polusai/basic-flatfield-estimation-tool:2.1.3-dev0-dev0
description: Generates images used for flatfield correction using the BaSiC algorithm.
entrypoint: python3 -m polus.images.regression.basic_flatfield_estimation
inputs:
Expand Down Expand Up @@ -59,4 +59,4 @@ ui:
key: inputs.getDarkfield
title: 'Calculate darkfield: '
type: checkbox
version: 2.1.2-dev0
version: 2.1.3-dev0-dev0
4 changes: 2 additions & 2 deletions regression/basic-flatfield-estimation-tool/plugin.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "BaSiC Flatfield Estimation",
"version": "2.1.2",
"version": "2.1.3-dev0",
"title": "Flatfield Estimation using BaSiC algorithm.",
"description": "Generates images used for flatfield correction using the BaSiC algorithm.",
"author": "Nick Schaub (nick.schaub@nih.gov), Najib Ishaq (najib.ishaq@nih.gov)",
"institution": "National Center for the Advancing Translational Sciences, National Institutes of Health",
"repository": "https://github.com/polusai/polus-plugins",
"website": "https://ncats.nih.gov/preclinical/core/informatics",
"citation": "Peng et al. \"A BaSiC tool for background and shading correction of optical microscopy images\" Nature Communications (2017)",
"containerId": "polusai/basic-flatfield-estimation-tool:2.1.2",
"containerId": "polusai/basic-flatfield-estimation-tool:2.1.3-dev0",
"baseCommand": [
"python3",
"-m",
Expand Down
4 changes: 2 additions & 2 deletions regression/basic-flatfield-estimation-tool/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "polus-images-regression-basic-flatfield-estimation"
version = "2.1.2"
version = "2.1.3-dev0"
description = ""
authors = [
"Nick Schaub <nick.schaub@nih.gov>",
Expand All @@ -16,7 +16,7 @@ filepattern = "^2.0.4"
typer = { version = "^0.7.0", extras = ["all"] }
numpy = "^1.24.3"
tqdm = "^4.65.0"
basicpy = "1.1.0"
basicpy = "1.2.0"

[tool.poetry.group.dev.dependencies]
bump2version = "^1.0.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

__all__ = ["estimate", "__version__"]

__version__ = "2.1.2"
__version__ = "2.1.3-dev0"

# Set the basicpy logger to warning
logging.getLogger("basicpy.basicpy").setLevel(logging.WARNING)
Expand Down

0 comments on commit d13440a

Please sign in to comment.