From cd8ccb03b37dbd91c0fb081e5271da0f3397e839 Mon Sep 17 00:00:00 2001 From: Jessica Smith <12jessicasmith34@gmail.com> Date: Tue, 24 Sep 2024 15:42:57 -0500 Subject: [PATCH] bump --- .bumpversion.toml | 2 +- pyproject.toml | 2 +- src/otf_api/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 17b6045..1e74bf0 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.6.3" +current_version = "0.6.4" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(?:-(?Pdev)(?P0|[1-9]\\d*))?" diff --git a/pyproject.toml b/pyproject.toml index 246d062..9d0852b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "otf-api" -version = "0.6.3" +version = "0.6.4" description = "Python OrangeTheory Fitness API Client" authors = ["Jessica Smith "] license = "MIT" diff --git a/src/otf_api/__init__.py b/src/otf_api/__init__.py index 0402ac3..779f276 100644 --- a/src/otf_api/__init__.py +++ b/src/otf_api/__init__.py @@ -6,7 +6,7 @@ from .api import Otf from .auth import OtfUser -__version__ = "0.6.3" +__version__ = "0.6.4" __all__ = ["Otf", "OtfUser"]