From 1f41c5be23d2a284dcd52e1274b537c419e50ee2 Mon Sep 17 00:00:00 2001 From: JacksonMaxfield Date: Tue, 29 Jun 2021 11:00:39 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.3.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 0473bf2..9736124 100644 --- a/napari_aicsimageio/__init__.py +++ b/napari_aicsimageio/__init__.py @@ -6,7 +6,7 @@ __email__ = "jacksonb@alleninstitute.org" # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "0.2.0" +__version__ = "0.3.0" def get_module_version() -> str: diff --git a/setup.cfg b/setup.cfg index dbe9096..2558299 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+) serialize = {major}.{minor}.{patch} commit = True diff --git a/setup.py b/setup.py index ec48e9d..3f3c044 100644 --- a/setup.py +++ b/setup.py @@ -93,6 +93,6 @@ url="https://github.com/AllenCellModeling/napari-aicsimageio", # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.rst - version="0.2.0", + version="0.3.0", zip_safe=False, )