From 002d2014bdc77a9309c1ddbf644ef531ef3362a0 Mon Sep 17 00:00:00 2001 From: JacksonMaxfield Date: Fri, 8 Oct 2021 15:36:46 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=204.2.0=20=E2=86=92=204.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aicsimageio/__init__.py | 2 +- cookiecutter.yaml | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aicsimageio/__init__.py b/aicsimageio/__init__.py index 30a703d4b..c6b3a3045 100644 --- a/aicsimageio/__init__.py +++ b/aicsimageio/__init__.py @@ -13,7 +13,7 @@ __email__ = "jmaxfieldbrown@gmail.com, jamie.sherman@gmail.com, bowdenm@spu.edu" # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "4.2.0" +__version__ = "4.3.0" def get_module_version() -> str: diff --git a/cookiecutter.yaml b/cookiecutter.yaml index 7cdec4ee7..ee9b4fbdf 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.2.0" + version: "4.3.0" open_source_license: "BSD license" \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index bc23ef8ae..30a4e0679 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.2.0 +current_version = 4.3.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} commit = True diff --git a/setup.py b/setup.py index 1e0e42cda..2696411ec 100644 --- a/setup.py +++ b/setup.py @@ -151,6 +151,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.2.0", + version="4.3.0", zip_safe=False, )