From 2fda30c12cce904bd9d48572a22310549f34cf3d Mon Sep 17 00:00:00 2001 From: Yotam Erel Date: Mon, 19 Jun 2023 09:24:37 +0900 Subject: [PATCH] bumpver --- pyproject.toml | 4 ++-- src/icatcher/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 276f2c0..ac45d1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "icatcher" -version = "0.0.13" +version = "0.0.14" description = "iCatcher+: Robust and automated annotation of infant gaze from videos collected in laboratory, field, and online studies." readme = "README.md" authors = [{ name = "Yotam Erel", email = "erelyotam@gmail.com" }] @@ -37,7 +37,7 @@ dev = ["pytest"] Homepage = "https://github.com/yoterel/icatcher_plus" [tool.bumpver] -current_version = "0.0.13" +current_version = "0.0.14" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}" commit = false diff --git a/src/icatcher/__init__.py b/src/icatcher/__init__.py index b749de7..efa4bc0 100644 --- a/src/icatcher/__init__.py +++ b/src/icatcher/__init__.py @@ -1,5 +1,5 @@ ### define version -__version__ = "0.0.13" +__version__ = "0.0.14" version = __version__ ### define classes classes = {'noface': -2, 'nobabyface': -1, 'away': 0, 'left': 1, 'right': 2}