From 6daa4f2d689ae2870b724478c3181fb977ef8edf Mon Sep 17 00:00:00 2001 From: Yotam Erel Date: Tue, 11 Jul 2023 18:19:33 +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 1679904..03f422d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "icatcher" -version = "0.1.0" +version = "0.1.1" 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" }] @@ -39,7 +39,7 @@ dev = ["pytest"] Homepage = "https://github.com/yoterel/icatcher_plus" [tool.bumpver] -current_version = "0.1.0" +current_version = "0.1.1" 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 64272d2..f0ff954 100644 --- a/src/icatcher/__init__.py +++ b/src/icatcher/__init__.py @@ -1,5 +1,5 @@ ### define version -__version__ = "0.1.0" +__version__ = "0.1.1" version = __version__ ### define classes classes = {'noface': -2, 'nobabyface': -1, 'away': 0, 'left': 1, 'right': 2}