diff --git a/sherlock-python-client/README.md b/sherlock-python-client/README.md index 908dfa94..9405a8fc 100644 --- a/sherlock-python-client/README.md +++ b/sherlock-python-client/README.md @@ -22,7 +22,7 @@ Note: this API will try to load and return associations in responses, so clients This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: development -- Package version: v1.6.0 +- Package version: v1.6.1 - Generator version: 7.9.0-SNAPSHOT - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/sherlock-python-client/pyproject.toml b/sherlock-python-client/pyproject.toml index 06db3ddb..87afa2fe 100644 --- a/sherlock-python-client/pyproject.toml +++ b/sherlock-python-client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sherlock_python_client" -version = "v1.6.0" +version = "v1.6.1" description = "Sherlock" authors = ["DSP DevOps "] license = "BSD-3-Clause" @@ -12,17 +12,18 @@ include = ["sherlock_python_client/py.typed"] [tool.poetry.dependencies] python = "^3.8" -urllib3 = ">= 1.25.3" -python-dateutil = ">=2.8.2" -pydantic = ">=2" -typing-extensions = ">=4.7.1" +urllib3 = ">= 1.25.3 < 3.0.0" +python-dateutil = ">= 2.8.2" +pydantic = ">= 2" +typing-extensions = ">= 4.7.1" [tool.poetry.dev-dependencies] -pytest = ">=7.2.1" -tox = ">=3.9.0" -flake8 = ">=4.0.0" -types-python-dateutil = ">=2.8.19.14" -mypy = ">=1.5" +pytest = ">= 7.2.1" +pytest-cov = ">= 2.8.1" +tox = ">= 3.9.0" +flake8 = ">= 4.0.0" +types-python-dateutil = ">= 2.8.19.14" +mypy = ">= 1.5" [build-system] diff --git a/sherlock-python-client/requirements.txt b/sherlock-python-client/requirements.txt index 7d45544d..67f7f68d 100644 --- a/sherlock-python-client/requirements.txt +++ b/sherlock-python-client/requirements.txt @@ -1,5 +1,4 @@ -python_dateutil >= 2.5.3 -setuptools >= 21.0.0 urllib3 >= 1.25.3, < 3.0.0 +python_dateutil >= 2.8.2 pydantic >= 2 typing-extensions >= 4.7.1 diff --git a/sherlock-python-client/setup.py b/sherlock-python-client/setup.py index 9109b50a..5fc9ae02 100644 --- a/sherlock-python-client/setup.py +++ b/sherlock-python-client/setup.py @@ -22,11 +22,11 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "sherlock-python-client" -VERSION = "v1.6.0" -PYTHON_REQUIRES = ">=3.7" +VERSION = "v1.6.1" +PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ "urllib3 >= 1.25.3, < 3.0.0", - "python-dateutil", + "python-dateutil >= 2.8.2", "pydantic >= 2", "typing-extensions >= 4.7.1", ] diff --git a/sherlock-python-client/sherlock_python_client/__init__.py b/sherlock-python-client/sherlock_python_client/__init__.py index 28ed4e05..6a7b514f 100644 --- a/sherlock-python-client/sherlock_python_client/__init__.py +++ b/sherlock-python-client/sherlock_python_client/__init__.py @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "v1.6.0" +__version__ = "v1.6.1" # import apis into sdk package from sherlock_python_client.api.app_versions_api import AppVersionsApi diff --git a/sherlock-python-client/sherlock_python_client/api_client.py b/sherlock-python-client/sherlock_python_client/api_client.py index ab88810c..9d745ee5 100644 --- a/sherlock-python-client/sherlock_python_client/api_client.py +++ b/sherlock-python-client/sherlock_python_client/api_client.py @@ -91,7 +91,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/v1.6.0/python' + self.user_agent = 'OpenAPI-Generator/v1.6.1/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/sherlock-python-client/sherlock_python_client/configuration.py b/sherlock-python-client/sherlock_python_client/configuration.py index 594f87c2..deaf84a0 100644 --- a/sherlock-python-client/sherlock_python_client/configuration.py +++ b/sherlock-python-client/sherlock_python_client/configuration.py @@ -385,7 +385,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: development\n"\ - "SDK Package Version: v1.6.0".\ + "SDK Package Version: v1.6.1".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/sherlock-python-client/sherlock_python_client_README.md b/sherlock-python-client/sherlock_python_client_README.md index 908dfa94..9405a8fc 100644 --- a/sherlock-python-client/sherlock_python_client_README.md +++ b/sherlock-python-client/sherlock_python_client_README.md @@ -22,7 +22,7 @@ Note: this API will try to load and return associations in responses, so clients This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: development -- Package version: v1.6.0 +- Package version: v1.6.1 - Generator version: 7.9.0-SNAPSHOT - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/sherlock-python-client/test-requirements.txt b/sherlock-python-client/test-requirements.txt index 8e6d8cb1..e98555c1 100644 --- a/sherlock-python-client/test-requirements.txt +++ b/sherlock-python-client/test-requirements.txt @@ -1,5 +1,6 @@ -pytest~=7.1.3 -pytest-cov>=2.8.1 -pytest-randomly>=3.12.0 -mypy>=1.4.1 -types-python-dateutil>=2.8.19 +pytest >= 7.2.1 +pytest-cov >= 2.8.1 +tox >= 3.9.0 +flake8 >= 4.0.0 +types-python-dateutil >= 2.8.19.14 +mypy >= 1.5 diff --git a/sherlock-typescript-client/README.md b/sherlock-typescript-client/README.md index b75e74b6..29015ffb 100644 --- a/sherlock-typescript-client/README.md +++ b/sherlock-typescript-client/README.md @@ -1,4 +1,4 @@ -## @sherlock-js-client/sherlock@v1.6.0 +## @sherlock-js-client/sherlock@v1.6.1 This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments: @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co _published:_ ``` -npm install @sherlock-js-client/sherlock@v1.6.0 --save +npm install @sherlock-js-client/sherlock@v1.6.1 --save ``` _unPublished (not recommended):_ diff --git a/sherlock-typescript-client/package-lock.json b/sherlock-typescript-client/package-lock.json index 87be1335..da153a48 100644 --- a/sherlock-typescript-client/package-lock.json +++ b/sherlock-typescript-client/package-lock.json @@ -1,12 +1,12 @@ { "name": "@sherlock-js-client/sherlock", - "version": "v1.6.0", + "version": "v1.6.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@sherlock-js-client/sherlock", - "version": "v1.6.0", + "version": "v1.6.1", "devDependencies": { "typescript": "^4.0 || ^5.0" } diff --git a/sherlock-typescript-client/package.json b/sherlock-typescript-client/package.json index 7c82ca8e..a9f9c774 100644 --- a/sherlock-typescript-client/package.json +++ b/sherlock-typescript-client/package.json @@ -1,6 +1,6 @@ { "name": "@sherlock-js-client/sherlock", - "version": "v1.6.0", + "version": "v1.6.1", "description": "OpenAPI client for @sherlock-js-client/sherlock", "author": "OpenAPI-Generator", "repository": {