From 5ff81e065e77953ab22c2d3b06d73a0d92386afc Mon Sep 17 00:00:00 2001 From: TJ VanToll Date: Thu, 15 Jan 2026 13:41:44 -0500 Subject: [PATCH] fix: forgot to bump the version to 5, apparently --- config.json | 2 +- src/.openapi-generator/FILES | 1 - src/README.md | 2 +- src/notehub_py/__init__.py | 2 +- src/notehub_py/api_client.py | 2 +- src/notehub_py/configuration.py | 2 +- src/pyproject.toml | 2 +- src/setup.py | 2 +- 8 files changed, 7 insertions(+), 8 deletions(-) diff --git a/config.json b/config.json index dca01ec..586c245 100644 --- a/config.json +++ b/config.json @@ -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" } diff --git a/src/.openapi-generator/FILES b/src/.openapi-generator/FILES index 30399b4..a893511 100644 --- a/src/.openapi-generator/FILES +++ b/src/.openapi-generator/FILES @@ -303,5 +303,4 @@ setup.cfg setup.py test-requirements.txt test/__init__.py -test/test_satellite_data_usage.py tox.ini diff --git a/src/README.md b/src/README.md index d3ff90d..3ef5fbf 100644 --- a/src/README.md +++ b/src/README.md @@ -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/) diff --git a/src/notehub_py/__init__.py b/src/notehub_py/__init__.py index fe003c9..5e8b7f7 100644 --- a/src/notehub_py/__init__.py +++ b/src/notehub_py/__init__.py @@ -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 diff --git a/src/notehub_py/api_client.py b/src/notehub_py/api_client.py index 77c3b8b..5f54c11 100644 --- a/src/notehub_py/api_client.py +++ b/src/notehub_py/api_client.py @@ -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): diff --git a/src/notehub_py/configuration.py b/src/notehub_py/configuration.py index 8107174..92c6fe9 100644 --- a/src/notehub_py/configuration.py +++ b/src/notehub_py/configuration.py @@ -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): diff --git a/src/pyproject.toml b/src/pyproject.toml index fff1662..4448162 100644 --- a/src/pyproject.toml +++ b/src/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "notehub_py" -version = "4.0.0" +version = "5.0.0" description = "Notehub API" authors = ["Blues Engineering "] license = "MIT" diff --git a/src/setup.py b/src/setup.py index 205145e..fad5830 100644 --- a/src/setup.py +++ b/src/setup.py @@ -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",