Skip to content

Commit 3f62208

Browse files
committed
Merge branch 'fix-urllib3-126'
2 parents 7e25170 + 9e54755 commit 3f62208

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.openapi-generator-ignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@
2828
git_push.sh
2929
README.md
3030
setup.py
31-
setup.cfg
31+
setup.cfg
32+
requirements.txt
33+
test-requirements.txt

.openapi-generator/FILES

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ docs/UserApi.md
105105
docs/UserResponse.md
106106
docs/UserResponseData.md
107107
pyproject.toml
108-
requirements.txt
109-
test-requirements.txt
110108
test/__init__.py
111109
tox.ini
112110
ynab/__init__.py

openapi-generator-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
packageName: ynab
2-
packageVersion: 1.3.0
2+
packageVersion: 1.3.1
33
packageDescription: Official Python client for the YNAB API. API documentation available at https://api.ynab.com.
44
licenseInfo:
55
name: Apache-2.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ynab"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = "Official Python client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.74.0"
55
authors = ["YNAB"]
66
license = "Apache-2.0"

ynab/__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__ = "1.3.0"
17+
__version__ = "1.3.1"
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
@@ -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/1.3.0/python'
93+
self.user_agent = 'OpenAPI-Generator/1.3.1/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

ynab/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ def to_debug_report(self) -> str:
505505
"OS: {env}\n"\
506506
"Python Version: {pyversion}\n"\
507507
"Version of the API: 1.74.0\n"\
508-
"SDK Package Version: 1.3.0".\
508+
"SDK Package Version: 1.3.1".\
509509
format(env=sys.platform, pyversion=sys.version)
510510

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

0 commit comments

Comments
 (0)