Skip to content

Commit

Permalink
Update with latest OpenAPI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
moneykitt committed Dec 6, 2023
1 parent 118df64 commit b10faa0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion moneykit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "0.1.0.alpha.2"
__version__ = "0.1.0"

# import apis into sdk package
from moneykit.api.access_token_api import AccessTokenApi
Expand Down
2 changes: 1 addition & 1 deletion moneykit/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = "OpenAPI-Generator/0.1.0.alpha.2/python"
self.user_agent = "OpenAPI-Generator/0.1.0/python"
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
4 changes: 1 addition & 3 deletions moneykit/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,7 @@ def to_debug_report(self):
"OS: {env}\n"
"Python Version: {pyversion}\n"
"Version of the API: 0.1.0\n"
"SDK Package Version: 0.1.0.alpha.2".format(
env=sys.platform, pyversion=sys.version
)
"SDK Package Version: 0.1.0".format(env=sys.platform, pyversion=sys.version)
)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "moneykit"
version = "0.1.0.alpha.2"
version = "0.1.0"
description = "MoneyKit API"
authors = ["OpenAPI Generator Community <[email protected]>"]
license = "NoLicense"
Expand Down

0 comments on commit b10faa0

Please sign in to comment.