diff --git a/pyproject.toml b/pyproject.toml index d3880c1..8f73718 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ version = { attr = "api_client.__version__" } [tool.bumpversion] -current_version = "0.1.8" +current_version = "1.0.0" commit = true tag = true tag_name = "v{new_version}" diff --git a/src/api_client/__init__.py b/src/api_client/__init__.py index 979c104..d84f592 100644 --- a/src/api_client/__init__.py +++ b/src/api_client/__init__.py @@ -1,4 +1,4 @@ from .client import BaseAPIClient -__version__ = "0.1.8" +__version__ = "1.0.0" __all__ = ["BaseAPIClient"]