From 67a89e5223b9af955d73f66b3273f36dfd459d86 Mon Sep 17 00:00:00 2001 From: Kevin Mitcham Date: Wed, 11 Sep 2024 13:36:17 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.5=20=E2=86=92=201.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 2 +- camera_alignment_core/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8af1514..15260ad 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.5 +current_version = 1.1.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.((?P[a-z]*)(?P\d*)))? serialize = {major}.{minor}.{patch}.{release}{devbuild} diff --git a/README.md b/README.md index 96dbff8..725bce0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Core algorithms for aligning two-camera microscopy imagery ## Installation -`pip install camera_alignment_core==1.0.5`
+`pip install camera_alignment_core==1.1.0`
This library is published to a private PyPI server ("Artifactory") accessible within the Allen Institute network or over VPN. This has downstream effects for how this library is installed into other Python packages. diff --git a/camera_alignment_core/__init__.py b/camera_alignment_core/__init__.py index ec7a7dd..df7014d 100644 --- a/camera_alignment_core/__init__.py +++ b/camera_alignment_core/__init__.py @@ -5,7 +5,7 @@ # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.md -__version__ = "1.0.5" +__version__ = "1.1.0" def get_module_version(): diff --git a/setup.py b/setup.py index 0f9fe35..8925285 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,6 @@ def readme(): url="https://github.com/aics-int/camera_alignment_core", # Do not edit this string manually, always use bumpversion # Details in CONTRIBUTING.rst - version="1.0.5", + version="1.1.0", zip_safe=False, )