Skip to content

Commit 60ed690

Browse files
committed
Bump to 0.0.2
1 parent 7ad72fc commit 60ed690

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
packageVersion: 0.0.1
1+
packageVersion: 0.0.2
22
packageName: ynab
33
packageUrl: https://github.com/davidhao3300/ynab-python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from setuptools import setup, find_packages # noqa: H301
1414

1515
NAME = "ynab"
16-
VERSION = "0.0.1"
16+
VERSION = "0.0.2"
1717
# To install the library, run the following
1818
#
1919
# python setup.py install

ynab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "0.0.1"
17+
__version__ = "0.0.2"
1818

1919
# import apis into sdk package
2020
from ynab.api.accounts_api import AccountsApi

ynab/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.default_headers[header_name] = header_value
7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/0.0.1/python'
81+
self.user_agent = 'OpenAPI-Generator/0.0.2/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

ynab/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def to_debug_report(self):
336336
"OS: {env}\n"\
337337
"Python Version: {pyversion}\n"\
338338
"Version of the API: 1.0.0\n"\
339-
"SDK Package Version: 0.0.1".\
339+
"SDK Package Version: 0.0.2".\
340340
format(env=sys.platform, pyversion=sys.version)
341341

342342
def get_host_settings(self):

0 commit comments

Comments
 (0)