Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"packageName": "notehub_py",
"packageUrl": "https://github.com/blues/notehub-py",
"projectName": "notehub-py",
"packageVersion": "4.0.0"
"packageVersion": "5.0.0"
}
1 change: 0 additions & 1 deletion src/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -303,5 +303,4 @@ setup.cfg
setup.py
test-requirements.txt
test/__init__.py
test/test_satellite_data_usage.py
tox.ini
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The OpenAPI definition for the Notehub.io API.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.2.0
- Package version: 4.0.0
- Package version: 5.0.0
- Generator version: 7.5.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://dev.blues.io/support/](https://dev.blues.io/support/)
Expand Down
2 changes: 1 addition & 1 deletion src/notehub_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
""" # noqa: E501


__version__ = "4.0.0"
__version__ = "5.0.0"

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

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

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion src/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "notehub_py"
version = "4.0.0"
version = "5.0.0"
description = "Notehub API"
authors = ["Blues Engineering <engineering@blues.io>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "notehub-py"
VERSION = "4.0.0"
VERSION = "5.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 2.5.0",
Expand Down