Skip to content

Commit 67de5e9

Browse files
committed
Version at 2.0.0
1 parent b3083c0 commit 67de5e9

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

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: 3.0.0
2+
packageVersion: 2.0.0
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ynab"
3-
version = "3.0.0"
3+
version = "2.0.0"
44
description = "Official Python client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.78.0"
55
authors = ["YNAB"]
66
license = "Apache-2.0"
@@ -14,7 +14,6 @@ urllib3 = ">= 1.25.3 < 3.0.0"
1414
python-dateutil = ">= 2.8.2"
1515
pydantic = ">= 2"
1616
typing-extensions = ">= 4.7.1"
17-
certifi = ">= 2024.2.2"
1817

1918
[tool.poetry.group.dev.dependencies]
2019
pytest = ">= 7.2.1"

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__ = "3.0.0"
17+
__version__ = "2.0.0"
1818

1919
# Define package exports
2020
__all__ = [

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/3.0.0/python'
93+
self.user_agent = 'OpenAPI-Generator/2.0.0/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.78.0\n"\
508-
"SDK Package Version: 3.0.0".\
508+
"SDK Package Version: 2.0.0".\
509509
format(env=sys.platform, pyversion=sys.version)
510510

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

0 commit comments

Comments
 (0)