From b84d07cb2c201b7bbeb97abdb0af6d1fba86d9fa Mon Sep 17 00:00:00 2001 From: Andrew Ross Date: Tue, 22 Feb 2022 18:34:01 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.4.0=20=E2=86=92=201.4.1rc0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- src/d2b/d2b.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 20e0fb9..1dde85b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0 +current_version = 1.4.1rc0 commit = True tag = True tag_name = {new_version} diff --git a/pyproject.toml b/pyproject.toml index 9f1a923..b04121a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "d2b" -version = "1.4.0" +version = "1.4.1rc0" description = "Organize data in the BIDS format" authors = ["Andrew Ross "] diff --git a/src/d2b/d2b.py b/src/d2b/d2b.py index e70b9aa..4648dfb 100644 --- a/src/d2b/d2b.py +++ b/src/d2b/d2b.py @@ -23,7 +23,7 @@ from d2b.utils import rsync from d2b.utils import splitext -__version__ = "1.4.0" +__version__ = "1.4.1rc0" T = TypeVar("T")