Skip to content

Commit

Permalink
Bump version: 0.6.0 → 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pattonw committed Mar 6, 2024
1 parent 2674200 commit f9fd0a9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwatershed"
version = "0.6.0"
version = "version = '0.7.0'"

Check failure on line 3 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Check

unexpected character 'v' while parsing major version number

Check failure on line 3 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Test Suite

unexpected character 'v' while parsing major version number

Check failure on line 3 in Cargo.toml

View workflow job for this annotation

GitHub Actions / Clippy

unexpected character 'v' while parsing major version number
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion mwatershed/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = """William Hunter Patton"""
__email__ = """[email protected]"""
__version__ = """0.6.0"""
__version__ = """__version__ = '0.7.0'"""
__version_info__ = tuple(int(n) for n in __version__.split("."))

from .mwatershed import agglom_rs, cluster
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "maturin"
[project]
authors = [{ name = "William Hunter Patton", email = "[email protected]" }]
name = "mwatershed"
version = "0.6.0"
version = "0.7.0"
description = "A rusty mutex watershed"
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.7.0
commit = True
tag = True

Expand Down

0 comments on commit f9fd0a9

Please sign in to comment.