From f4d82348a581d3f7a01774d94ecac2c288052bd6 Mon Sep 17 00:00:00 2001 From: Jessica Smith <12jessicasmith34@gmail.com> Date: Mon, 23 Dec 2024 15:26:17 -0600 Subject: [PATCH] bump to v0.8.3-dev1 --- .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 80450aa..a2e5d6f 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.8.2" +current_version = "0.8.3-dev1" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(?:-(?Pdev)(?P0|[1-9]\\d*))?" diff --git a/pyproject.toml b/pyproject.toml index cf997c7..6a02f26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "otf-api" -version = "0.8.2" +version = "0.8.3-dev1" 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 fbc20a8..0453111 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.2" +__version__ = "0.8.3-dev1" __all__ = ["Otf", "OtfUser"]