Skip to content

Commit cb15507

Browse files
authored
Updates for 3.0.0rc3 (#131)
Some extra updates since rc2
1 parent ac42e96 commit cb15507

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

airflow_client/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = ""3.0.0""
17+
__version__ = "3.0.0"
1818

1919
# import apis into sdk package
2020
from airflow_client.client.api.asset_api import AssetApi

airflow_client/client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/"3.0.0"/python'
93+
self.user_agent = 'OpenAPI-Generator/3.0.0/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

airflow_client/client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ def to_debug_report(self) -> str:
510510
"OS: {env}\n"\
511511
"Python Version: {pyversion}\n"\
512512
"Version of the API: 2\n"\
513-
"SDK Package Version: "3.0.0"".\
513+
"SDK Package Version: 3.0.0".\
514514
format(env=sys.platform, pyversion=sys.version)
515515

516516
def get_host_settings(self) -> List[HostSetting]:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ artifacts = [
8484
"/airflow_client",
8585
"/docs",
8686
"/test",
87-
"v1.yaml",
87+
"v2.yaml",
8888
]
8989
include = [
9090
"version.txt",
@@ -97,7 +97,7 @@ artifacts = [
9797
"/airflow_client",
9898
"/docs",
9999
"/test",
100-
"v1.yaml",
100+
"v2.yaml",
101101
]
102102
include = [
103103
"/airflow_client",

0 commit comments

Comments
 (0)