diff --git a/aicsimageio/__init__.py b/aicsimageio/__init__.py index 9aa4dc671..d0458f970 100644 --- a/aicsimageio/__init__.py +++ b/aicsimageio/__init__.py @@ -13,7 +13,7 @@ __email__ = "evamaxfieldbrown@gmail.com, jamie.sherman@gmail.com, bowdenm@spu.edu" # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "4.9.2" +__version__ = "4.9.3" def get_module_version() -> str: diff --git a/cookiecutter.yaml b/cookiecutter.yaml index 2b870e6b0..c9a9834f4 100644 --- a/cookiecutter.yaml +++ b/cookiecutter.yaml @@ -6,5 +6,5 @@ default_context: project_slug: "aicsimageio" project_short_description: "Image Reading, Metadata Conversion, and Image Writing for Microscopy Images in Pure Python" pypi_username: "aicspypi" - version: "4.9.2" + version: "4.9.3" open_source_license: "BSD license" \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 8c92a5a34..b4b71a243 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.9.2 +current_version = 4.9.3 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} commit = True diff --git a/setup.py b/setup.py index c87c00413..59799f71d 100644 --- a/setup.py +++ b/setup.py @@ -168,6 +168,6 @@ def run(self): url="https://github.com/AllenCellModeling/aicsimageio", # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md - version="4.9.2", + version="4.9.3", zip_safe=False, )