Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
zachliu committed Feb 2, 2021
1 parent 8863694 commit 38405be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion airflow_python_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""


__version__ = "0.2.6"
__version__ = "0.3.7"

# import ApiClient
from airflow_python_sdk.api_client import ApiClient
Expand Down
2 changes: 1 addition & 1 deletion airflow_python_sdk/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion airflow_python_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 38405be

Please sign in to comment.