From 82fc1b8538048204ad6080938ca993a51ff0038c Mon Sep 17 00:00:00 2001 From: Karthik Vegesna Date: Tue, 5 Mar 2024 15:14:48 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.5=20=E2=86=92=201.0.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cellpack/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cellpack/__init__.py b/cellpack/__init__.py index f5414936..fee504ee 100644 --- a/cellpack/__init__.py +++ b/cellpack/__init__.py @@ -6,7 +6,7 @@ __email__ = "meganr@alleninstitute.org" # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "1.0.5" +__version__ = "1.0.6" from .autopack.loaders.recipe_loader import RecipeLoader # noqa: F401 diff --git a/setup.cfg b/setup.cfg index ee20feeb..28341295 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.5 +current_version = 1.0.6 commit = True tag = True diff --git a/setup.py b/setup.py index d0536707..7398f34a 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,6 @@ url="https://github.com/mesoscope/cellpack", # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.rst - version="1.0.5", + version="1.0.6", zip_safe=False, )