From f9da26ae37f618072d3d3f8f2fc66fe4d8e976f4 Mon Sep 17 00:00:00 2001 From: Jessica Smith <12jessicasmith34@gmail.com> Date: Mon, 23 Dec 2024 16:48:25 -0600 Subject: [PATCH] bump patch --- .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 9b16d9b..6e7a19c 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.9.1" +current_version = "0.9.2" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(?:-(?Pdev)(?P0|[1-9]\\d*))?" diff --git a/pyproject.toml b/pyproject.toml index 0a0dccc..9e88ebd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "otf-api" -version = "0.9.1" +version = "0.9.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 b5c54cf..1ca19a2 100644 --- a/src/otf_api/__init__.py +++ b/src/otf_api/__init__.py @@ -11,7 +11,7 @@ basicConfig(level="INFO", style="{", format=LOG_FMT, datefmt=DATE_FMT) logging.getLogger("httpx").setLevel(logging.WARNING) -__version__ = "0.9.1" +__version__ = "0.9.2" __all__ = ["Otf", "OtfSync", "OtfUser"]