From 44b6999a9f40ecc44a9b5f08ea1f14887c4d01df Mon Sep 17 00:00:00 2001 From: William Patton Date: Wed, 6 Mar 2024 12:00:51 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.4.0=20=E2=86=92=200.5.0?= 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 10a44ea..3d4905e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwatershed" -version = "0.4.0" +version = "0.5.0" edition = "2018" [dependencies] diff --git a/mwatershed/__init__.py b/mwatershed/__init__.py index b6faded..1a75efd 100644 --- a/mwatershed/__init__.py +++ b/mwatershed/__init__.py @@ -3,7 +3,7 @@ __author__ = """William Hunter Patton""" __email__ = """pattonw@hhmi.org""" -__version__ = """0.4.0""" +__version__ = """0.5.0""" __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 883494f..fb243c6 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.4.0" +version = "0.5.0" description = "A rusty mutex watershed" readme = "README.md" diff --git a/setup.cfg b/setup.cfg index 41d8437..acbe1a0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.5.0 commit = True tag = True