From 292de0b6430b877259f5f50712a6a5341eb8581d Mon Sep 17 00:00:00 2001 From: William Patton Date: Wed, 6 Mar 2024 11:24:58 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.7.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 7306f12..0023de6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mwatershed" -version = "0.6.0" +version = "0.7.0" edition = "2018" [dependencies] diff --git a/mwatershed/__init__.py b/mwatershed/__init__.py index 474ad8d..ada9b05 100644 --- a/mwatershed/__init__.py +++ b/mwatershed/__init__.py @@ -3,7 +3,7 @@ __author__ = """William Hunter Patton""" __email__ = """pattonw@hhmi.org""" -__version__ = """0.6.0""" +__version__ = """0.7.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 fa3295c..f6e7a1a 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.6.0" +version = "0.7.0" description = "A rusty mutex watershed" readme = "README.md" diff --git a/setup.cfg b/setup.cfg index bcb23e0..f36835c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.7.0 commit = True tag = True