diff --git a/.github/workflows/package-release.yml b/.github/workflows/package-release.yml index 805bf55dd..6bc886412 100644 --- a/.github/workflows/package-release.yml +++ b/.github/workflows/package-release.yml @@ -105,10 +105,7 @@ jobs: else bump2version release --no-commit fi - - if [[ $(git status --porcelain) ]] - then - echo "released=true" >> $GITHUB_output + echo "released=$(git status --porcelain)" >> $GITHUB_output - name: Git | Commit if: steps.bump_version.outputs.released == 'true' env: diff --git a/regression/basic-flatfield-estimation-plugin/.bumpversion.cfg b/regression/basic-flatfield-estimation-plugin/.bumpversion.cfg index a0333e5e9..f80b005ff 100644 --- a/regression/basic-flatfield-estimation-plugin/.bumpversion.cfg +++ b/regression/basic-flatfield-estimation-plugin/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0 +current_version = 2.1.1-dev0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/regression/basic-flatfield-estimation-plugin/README.md b/regression/basic-flatfield-estimation-plugin/README.md index 9bf5eee14..6374097a1 100644 --- a/regression/basic-flatfield-estimation-plugin/README.md +++ b/regression/basic-flatfield-estimation-plugin/README.md @@ -1,4 +1,4 @@ -# BaSiC Flatfield Correction (v2.1.0) +# BaSiC Flatfield Correction (v2.1.1-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 diff --git a/regression/basic-flatfield-estimation-plugin/VERSION b/regression/basic-flatfield-estimation-plugin/VERSION index 7ec1d6db4..b114215cf 100644 --- a/regression/basic-flatfield-estimation-plugin/VERSION +++ b/regression/basic-flatfield-estimation-plugin/VERSION @@ -1 +1 @@ -2.1.0 +2.1.1-dev0 diff --git a/regression/basic-flatfield-estimation-plugin/plugin.json b/regression/basic-flatfield-estimation-plugin/plugin.json index 7d5e5b85f..3077a24f5 100644 --- a/regression/basic-flatfield-estimation-plugin/plugin.json +++ b/regression/basic-flatfield-estimation-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "BaSiC Flatfield Estimation", - "version": "2.1.0", + "version": "2.1.1-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)", @@ -8,7 +8,7 @@ "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-plugin:2.1.0", + "containerId": "polusai/basic-flatfield-estimation-plugin:2.1.1-dev0", "baseCommand": [ "python3", "-m", diff --git a/regression/basic-flatfield-estimation-plugin/pyproject.toml b/regression/basic-flatfield-estimation-plugin/pyproject.toml index d4c5c3970..f8161a8a9 100644 --- a/regression/basic-flatfield-estimation-plugin/pyproject.toml +++ b/regression/basic-flatfield-estimation-plugin/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "polus-plugins-regression-basic-flatfield-estimation" -version = "2.1.0" +version = "2.1.1-dev0" description = "" authors = [ "Nick Schaub ", diff --git a/regression/basic-flatfield-estimation-plugin/src/polus/plugins/regression/basic_flatfield_estimation/__init__.py b/regression/basic-flatfield-estimation-plugin/src/polus/plugins/regression/basic_flatfield_estimation/__init__.py index 318f1034e..3984e04b5 100644 --- a/regression/basic-flatfield-estimation-plugin/src/polus/plugins/regression/basic_flatfield_estimation/__init__.py +++ b/regression/basic-flatfield-estimation-plugin/src/polus/plugins/regression/basic_flatfield_estimation/__init__.py @@ -10,7 +10,7 @@ __all__ = ["estimate", "__version__"] -__version__ = "2.1.0" +__version__ = "2.1.1-dev0" # Set the basicpy logger to warning logging.getLogger("basicpy.basicpy").setLevel(logging.WARNING)