From c16aec73f68447538cb13c83d963e2291bc99ce2 Mon Sep 17 00:00:00 2001 From: Jessica Smith <12jessicasmith34@gmail.com> Date: Thu, 12 Dec 2024 22:24:43 -0600 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.1=20=E2=86=92=200.8.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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 1b387fa..cc131bd 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.8.1" +current_version = "0.8.2" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(?:-(?Pdev)(?P0|[1-9]\\d*))?" diff --git a/pyproject.toml b/pyproject.toml index 038099e..2db0fc5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "otf-api" -version = "0.8.1" +version = "0.8.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 c15fa09..fbc20a8 100644 --- a/src/otf_api/__init__.py +++ b/src/otf_api/__init__.py @@ -1,7 +1,7 @@ from .api import Otf from .auth import OtfUser -__version__ = "0.8.1" +__version__ = "0.8.2" __all__ = ["Otf", "OtfUser"]