Skip to content

Commit

Permalink
Bump version: 1.0.5 → 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kmitcham committed Sep 11, 2024
1 parent 25baf4a commit 67a89e5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.5
current_version = 1.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.((?P<release>[a-z]*)(?P<devbuild>\d*)))?
serialize =
{major}.{minor}.{patch}.{release}{devbuild}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Core algorithms for aligning two-camera microscopy imagery

## Installation

`pip install camera_alignment_core==1.0.5`<br>
`pip install camera_alignment_core==1.1.0`<br>

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.

Expand Down
2 changes: 1 addition & 1 deletion camera_alignment_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 67a89e5

Please sign in to comment.