From 08c5380b6135949810aa37deb5035283c16328c8 Mon Sep 17 00:00:00 2001 From: Eirini Koutsaniti Date: Wed, 9 Aug 2023 13:27:05 +0200 Subject: [PATCH] Update the api default version --- firecrest/BasicClient.py | 4 ++-- firecrest/__init__.py | 2 +- firecrest/cli/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/firecrest/BasicClient.py b/firecrest/BasicClient.py index fd4ac15..2553f9f 100644 --- a/firecrest/BasicClient.py +++ b/firecrest/BasicClient.py @@ -344,12 +344,12 @@ def __init__( #: Number of retries in case the rate limit is reached. When it is set to `None`, the #: client will keep trying until it gets a different status code than 429. self.num_retries_rate_limit: Optional[int] = None - self._api_version: Version = parse("1.13.0") + self._api_version: Version = parse("1.13.1") self._session = requests.Session() def set_api_version(self, api_version: str) -> None: """Set the version of the api of firecrest. By default it will be assumed that you are - using version 1.13.0 or compatible. The version is parsed by the `packaging` library. + using version 1.13.1 or compatible. The version is parsed by the `packaging` library. """ self._api_version = parse(api_version) diff --git a/firecrest/__init__.py b/firecrest/__init__.py index fbc6234..0361a8e 100644 --- a/firecrest/__init__.py +++ b/firecrest/__init__.py @@ -7,7 +7,7 @@ import sys -__version__ = "1.5.0" +__version__ = "1.5.1" __app_name__ = "firecrest" MIN_PYTHON_VERSION = (3, 7, 0) diff --git a/firecrest/cli/__init__.py b/firecrest/cli/__init__.py index bf73e06..fd40c61 100644 --- a/firecrest/cli/__init__.py +++ b/firecrest/cli/__init__.py @@ -1142,7 +1142,7 @@ def main( ), api_version: str = typer.Option( None, - help="Set the version of the api of firecrest. By default it will be assumed that you are using version 1.13.0 or " + help="Set the version of the api of firecrest. By default it will be assumed that you are using version 1.13.1 or " "compatible. The version is parsed by the `packaging` library.", envvar="FIRECREST_API_VERSION", ),