From 1009f644a8cc945f85a171e8cfe94046f8d5313a Mon Sep 17 00:00:00 2001 From: William Patton Date: Thu, 14 Mar 2024 17:12:17 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.5.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- mwatershed/__init__.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3d4905e..a4c4c1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwatershed" -version = "0.5.0" +version = "0.5.1" edition = "2018" [dependencies] diff --git a/mwatershed/__init__.py b/mwatershed/__init__.py index 1a75efd..13995df 100644 --- a/mwatershed/__init__.py +++ b/mwatershed/__init__.py @@ -3,7 +3,7 @@ __author__ = """William Hunter Patton""" __email__ = """pattonw@hhmi.org""" -__version__ = """0.5.0""" +__version__ = """0.5.1""" __version_info__ = tuple(int(n) for n in __version__.split(".")) from .mwatershed import agglom_rs, cluster diff --git a/pyproject.toml b/pyproject.toml index fb243c6..b7741c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "maturin" [project] authors = [{ name = "William Hunter Patton", email = "pattonw@hhmi.org" }] name = "mwatershed" -version = "0.5.0" +version = "0.5.1" description = "A rusty mutex watershed" readme = "README.md" diff --git a/setup.cfg b/setup.cfg index acbe1a0..b1538d8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1 commit = True tag = True