From 9e319e72cef7a5f488846057b932c2bbd10a277f Mon Sep 17 00:00:00 2001 From: Spencer Clark Date: Wed, 10 May 2023 17:12:34 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.2.1=20(?= =?UTF-8?q?#18)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This bumps the version of xpartition for a new release to include the fix in #17. --- setup.cfg | 2 +- xpartition.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 582f4ca..151badb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 commit = True tag = True diff --git a/xpartition.py b/xpartition.py index cb98891..d7e064e 100644 --- a/xpartition.py +++ b/xpartition.py @@ -11,7 +11,7 @@ from typing import Callable, Dict, Hashable, Mapping, Sequence, Tuple, Union -__version__ = "0.2.0" +__version__ = "0.2.1" Region = Union[None, Mapping[Hashable, slice]]