Skip to content

Commit

Permalink
Bump to 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhao3300 committed Oct 29, 2020
1 parent 7bb3708 commit 9601c65
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
packageVersion: 0.0.2
packageVersion: 0.0.3
packageName: ynab
packageUrl: https://github.com/davidhao3300/ynab-python
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "ynab"
VERSION = "0.0.2"
VERSION = "0.0.3"
# To install the library, run the following
#
# python setup.py install
Expand Down
2 changes: 1 addition & 1 deletion ynab/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from __future__ import absolute_import

__version__ = "0.0.2"
__version__ = "0.0.3"

# import apis into sdk package
from ynab.api.accounts_api import AccountsApi
Expand Down
2 changes: 1 addition & 1 deletion ynab/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.0.2/python'
self.user_agent = 'OpenAPI-Generator/0.0.3/python'
self.client_side_validation = configuration.client_side_validation

def __del__(self):
Expand Down
2 changes: 1 addition & 1 deletion ynab/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,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.0.2".\
"SDK Package Version: 0.0.3".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down

0 comments on commit 9601c65

Please sign in to comment.