diff --git a/airflow_python_sdk/__init__.py b/airflow_python_sdk/__init__.py index 3a1009e..cebdc9d 100644 --- a/airflow_python_sdk/__init__.py +++ b/airflow_python_sdk/__init__.py @@ -11,7 +11,7 @@ """ -__version__ = "0.2.6" +__version__ = "0.3.7" # import ApiClient from airflow_python_sdk.api_client import ApiClient diff --git a/airflow_python_sdk/api_client.py b/airflow_python_sdk/api_client.py index b6cc78b..f30747b 100644 --- a/airflow_python_sdk/api_client.py +++ b/airflow_python_sdk/api_client.py @@ -77,7 +77,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.2.6/python' + self.user_agent = 'OpenAPI-Generator/0.3.7/python' def __enter__(self): return self diff --git a/airflow_python_sdk/configuration.py b/airflow_python_sdk/configuration.py index 5fed761..cf14b8e 100644 --- a/airflow_python_sdk/configuration.py +++ b/airflow_python_sdk/configuration.py @@ -400,7 +400,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 1.0.0\n"\ - "SDK Package Version: 0.2.6".\ + "SDK Package Version: 0.3.7".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/setup.py b/setup.py index 209de2c..ccaa538 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "airflow-python-sdk" -VERSION = "0.2.6" +VERSION = "0.3.7" # To install the library, run the following # # python setup.py install