From ecc78a4301a4f4a80b74040aadd90bb6a3234533 Mon Sep 17 00:00:00 2001 From: Jessica Smith <12jessicasmith34@gmail.com> Date: Mon, 23 Sep 2024 16:30:10 -0500 Subject: [PATCH] bump: correct models to inherit from OtfItemBase and OtfListBase --- .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 fb1220a..92704fa 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.6.1" +current_version = "0.6.2" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(?:-(?Pdev)(?P0|[1-9]\\d*))?" diff --git a/pyproject.toml b/pyproject.toml index ad9effd..fcbcafc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "otf-api" -version = "0.6.1" +version = "0.6.2" 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 86de253..c1b6207 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.1" +__version__ = "0.6.2" __all__ = ["Otf", "OtfUser"]