Skip to content

Commit

Permalink
Merge pull request #10 from swimmwatch/dev
Browse files Browse the repository at this point in the history
Fix package description
  • Loading branch information
swimmwatch authored May 1, 2022
2 parents ba2a7c0 + 528f74d commit 386c511
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .openapi-generator/PACKAGE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Generated Python SDK for working with [OpenDota API](https://docs.opendota.com/)
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 18.0.0
- Package version: 1.0.1
- Package version: 1.0.2
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion custom-template/pyproject.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[tool.poetry]
name = "{{{projectName}}}"
version = "{{packageVersion}}"
description = "{{appName}}"
description = "Generated Python SDK for working with OpenDota API"
authors = ["{{infoName}}{{^infoName}}OpenAPI Generator community{{/infoName}} <{{infoEmail}}{{^infoEmail}}[email protected]{{/infoEmail}}>"]
maintainers = ["Dmitry Vasiliev <contact[email protected]>"]
keywords = ["OpenAPI", "OpenAPI-Generator", "{{{appName}}}"]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "python-opendota"
version = "1.0.1"
description = "OpenDota API"
version = "1.0.2"
description = "Generated Python SDK for working with OpenDota API"
authors = ["OpenAPI Generator community <[email protected]>"]
maintainers = ["Dmitry Vasiliev <[email protected]>"]
keywords = ["OpenAPI", "OpenAPI-Generator", "OpenDota API"]
Expand Down
2 changes: 1 addition & 1 deletion python_opendota/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"""


__version__ = "1.0.1"
__version__ = "1.0.2"

# import ApiClient
from python_opendota.api_client import ApiClient
Expand Down
2 changes: 1 addition & 1 deletion python_opendota/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,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/1.0.1/python'
self.user_agent = 'OpenAPI-Generator/1.0.2/python'

def __enter__(self):
return self
Expand Down
2 changes: 1 addition & 1 deletion python_opendota/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 18.0.0\n"\
"SDK Package Version: 1.0.1".\
"SDK Package Version: 1.0.2".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down

0 comments on commit 386c511

Please sign in to comment.