diff --git a/.bumpversion.toml b/.bumpversion.toml index 73a0916..9b16d9b 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.9.0" +current_version = "0.9.1" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(?:-(?Pdev)(?P0|[1-9]\\d*))?" diff --git a/pyproject.toml b/pyproject.toml index a428e37..0a0dccc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "otf-api" -version = "0.9.0" +version = "0.9.1" 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 52c6931..10028a6 100644 --- a/src/otf_api/__init__.py +++ b/src/otf_api/__init__.py @@ -9,7 +9,7 @@ basicConfig(level="INFO", style="{", format=LOG_FMT, datefmt=DATE_FMT) -__version__ = "0.9.0" +__version__ = "0.9.1" __all__ = ["Otf", "OtfSync", "OtfUser"]