From efee3a9fab2aacde20441698233a647e34589f60 Mon Sep 17 00:00:00 2001 From: evamaxfield Date: Thu, 21 Jul 2022 14:09:37 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.1=20=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- napari_aicsimageio/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/napari_aicsimageio/__init__.py b/napari_aicsimageio/__init__.py index 9ccc6f7..82b49bd 100644 --- a/napari_aicsimageio/__init__.py +++ b/napari_aicsimageio/__init__.py @@ -6,7 +6,7 @@ __email__ = "evamaxfieldbrown@gmail.com" # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "0.6.1" +__version__ = "0.7.0" def get_module_version() -> str: diff --git a/setup.cfg b/setup.cfg index e646ae0..6181fc1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.7.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} commit = True diff --git a/setup.py b/setup.py index 6a9e560..9fb3aa4 100644 --- a/setup.py +++ b/setup.py @@ -108,6 +108,6 @@ }, # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.rst - version="0.6.1", + version="0.7.0", zip_safe=False, )